diff --git a/msgraph_beta/generated/app/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_request_builder.py b/msgraph_beta/generated/app/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_request_builder.py deleted file mode 100644 index fcfc1144233..00000000000 --- a/msgraph_beta/generated/app/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_request_builder.py +++ /dev/null @@ -1,89 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ......models.admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - from ......models.o_data_errors.o_data_error import ODataError - from .admit_all_from_lobby_post_request_body import AdmitAllFromLobbyPostRequestBody - -class AdmitAllFromLobbyRequestBuilder(BaseRequestBuilder): - """ - Provides operations to call the admitAllFromLobby method. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new AdmitAllFromLobbyRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/app/calls/{call%2Did}/participants/admitAllFromLobby", path_parameters) - - async def post(self,body: AdmitAllFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[AdmitAllFromLobbyOperation]: - """ - Invoke action admitAllFromLobby - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[AdmitAllFromLobbyOperation] - """ - if body is None: - raise TypeError("body cannot be null.") - request_info = self.to_post_request_information( - body, request_configuration - ) - from ......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ......models.admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - - return await self.request_adapter.send_async(request_info, AdmitAllFromLobbyOperation, error_mapping) - - def to_post_request_information(self,body: AdmitAllFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Invoke action admitAllFromLobby - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - if body is None: - raise TypeError("body cannot be null.") - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - request_info.set_content_from_parsable(self.request_adapter, "application/json", body) - return request_info - - def with_url(self,raw_url: str) -> AdmitAllFromLobbyRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: AdmitAllFromLobbyRequestBuilder - """ - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return AdmitAllFromLobbyRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class AdmitAllFromLobbyRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/app/calls/item/participants/item/admit_from_lobby/admit_from_lobby_request_builder.py b/msgraph_beta/generated/app/calls/item/participants/item/admit_from_lobby/admit_from_lobby_request_builder.py deleted file mode 100644 index d642082aa75..00000000000 --- a/msgraph_beta/generated/app/calls/item/participants/item/admit_from_lobby/admit_from_lobby_request_builder.py +++ /dev/null @@ -1,89 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .......models.admit_from_lobby_operation import AdmitFromLobbyOperation - from .......models.o_data_errors.o_data_error import ODataError - from .admit_from_lobby_post_request_body import AdmitFromLobbyPostRequestBody - -class AdmitFromLobbyRequestBuilder(BaseRequestBuilder): - """ - Provides operations to call the admitFromLobby method. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new AdmitFromLobbyRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/app/calls/{call%2Did}/participants/{participant%2Did}/admitFromLobby", path_parameters) - - async def post(self,body: AdmitFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[AdmitFromLobbyOperation]: - """ - Invoke action admitFromLobby - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[AdmitFromLobbyOperation] - """ - if body is None: - raise TypeError("body cannot be null.") - request_info = self.to_post_request_information( - body, request_configuration - ) - from .......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .......models.admit_from_lobby_operation import AdmitFromLobbyOperation - - return await self.request_adapter.send_async(request_info, AdmitFromLobbyOperation, error_mapping) - - def to_post_request_information(self,body: AdmitFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Invoke action admitFromLobby - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - if body is None: - raise TypeError("body cannot be null.") - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - request_info.set_content_from_parsable(self.request_adapter, "application/json", body) - return request_info - - def with_url(self,raw_url: str) -> AdmitFromLobbyRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: AdmitFromLobbyRequestBuilder - """ - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return AdmitFromLobbyRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class AdmitFromLobbyRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/app/calls/item/participants/item/participant_item_request_builder.py b/msgraph_beta/generated/app/calls/item/participants/item/participant_item_request_builder.py index c3adc7beb6b..e393fba69be 100644 --- a/msgraph_beta/generated/app/calls/item/participants/item/participant_item_request_builder.py +++ b/msgraph_beta/generated/app/calls/item/participants/item/participant_item_request_builder.py @@ -16,9 +16,7 @@ if TYPE_CHECKING: from ......models.o_data_errors.o_data_error import ODataError from ......models.participant import Participant - from .admit_from_lobby.admit_from_lobby_request_builder import AdmitFromLobbyRequestBuilder from .mute.mute_request_builder import MuteRequestBuilder - from .remove_from_lobby.remove_from_lobby_request_builder import RemoveFromLobbyRequestBuilder from .report_synthetic_media.report_synthetic_media_request_builder import ReportSyntheticMediaRequestBuilder from .start_hold_music.start_hold_music_request_builder import StartHoldMusicRequestBuilder from .stop_hold_music.stop_hold_music_request_builder import StopHoldMusicRequestBuilder @@ -144,15 +142,6 @@ def with_url(self,raw_url: str) -> ParticipantItemRequestBuilder: raise TypeError("raw_url cannot be null.") return ParticipantItemRequestBuilder(self.request_adapter, raw_url) - @property - def admit_from_lobby(self) -> AdmitFromLobbyRequestBuilder: - """ - Provides operations to call the admitFromLobby method. - """ - from .admit_from_lobby.admit_from_lobby_request_builder import AdmitFromLobbyRequestBuilder - - return AdmitFromLobbyRequestBuilder(self.request_adapter, self.path_parameters) - @property def mute(self) -> MuteRequestBuilder: """ @@ -162,15 +151,6 @@ def mute(self) -> MuteRequestBuilder: return MuteRequestBuilder(self.request_adapter, self.path_parameters) - @property - def remove_from_lobby(self) -> RemoveFromLobbyRequestBuilder: - """ - Provides operations to call the removeFromLobby method. - """ - from .remove_from_lobby.remove_from_lobby_request_builder import RemoveFromLobbyRequestBuilder - - return RemoveFromLobbyRequestBuilder(self.request_adapter, self.path_parameters) - @property def report_synthetic_media(self) -> ReportSyntheticMediaRequestBuilder: """ diff --git a/msgraph_beta/generated/app/calls/item/participants/participants_request_builder.py b/msgraph_beta/generated/app/calls/item/participants/participants_request_builder.py index 4d755ec033e..d6c85868c7e 100644 --- a/msgraph_beta/generated/app/calls/item/participants/participants_request_builder.py +++ b/msgraph_beta/generated/app/calls/item/participants/participants_request_builder.py @@ -17,7 +17,6 @@ from .....models.o_data_errors.o_data_error import ODataError from .....models.participant import Participant from .....models.participant_collection_response import ParticipantCollectionResponse - from .admit_all_from_lobby.admit_all_from_lobby_request_builder import AdmitAllFromLobbyRequestBuilder from .count.count_request_builder import CountRequestBuilder from .invite.invite_request_builder import InviteRequestBuilder from .item.participant_item_request_builder import ParticipantItemRequestBuilder @@ -129,15 +128,6 @@ def with_url(self,raw_url: str) -> ParticipantsRequestBuilder: raise TypeError("raw_url cannot be null.") return ParticipantsRequestBuilder(self.request_adapter, raw_url) - @property - def admit_all_from_lobby(self) -> AdmitAllFromLobbyRequestBuilder: - """ - Provides operations to call the admitAllFromLobby method. - """ - from .admit_all_from_lobby.admit_all_from_lobby_request_builder import AdmitAllFromLobbyRequestBuilder - - return AdmitAllFromLobbyRequestBuilder(self.request_adapter, self.path_parameters) - @property def count(self) -> CountRequestBuilder: """ diff --git a/msgraph_beta/generated/base_graph_service_client.py b/msgraph_beta/generated/base_graph_service_client.py index 3cebcfcbbb3..9c155506a19 100644 --- a/msgraph_beta/generated/base_graph_service_client.py +++ b/msgraph_beta/generated/base_graph_service_client.py @@ -14,7 +14,6 @@ from kiota_serialization_text.text_parse_node_factory import TextParseNodeFactory from kiota_serialization_text.text_serialization_writer_factory import TextSerializationWriterFactory from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn if TYPE_CHECKING: from .access_reviews.access_reviews_request_builder import AccessReviewsRequestBuilder @@ -236,7 +235,6 @@ def service_principals_with_app_id(self,app_id: str) -> ServicePrincipalsWithApp param app_id: Alternate key of servicePrincipal Returns: ServicePrincipalsWithAppIdRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if app_id is None: raise TypeError("app_id cannot be null.") from .service_principals_with_app_id.service_principals_with_app_id_request_builder import ServicePrincipalsWithAppIdRequestBuilder diff --git a/msgraph_beta/generated/communications/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_request_builder.py b/msgraph_beta/generated/communications/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_request_builder.py deleted file mode 100644 index 96147107116..00000000000 --- a/msgraph_beta/generated/communications/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_request_builder.py +++ /dev/null @@ -1,89 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ......models.admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - from ......models.o_data_errors.o_data_error import ODataError - from .admit_all_from_lobby_post_request_body import AdmitAllFromLobbyPostRequestBody - -class AdmitAllFromLobbyRequestBuilder(BaseRequestBuilder): - """ - Provides operations to call the admitAllFromLobby method. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new AdmitAllFromLobbyRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/communications/calls/{call%2Did}/participants/admitAllFromLobby", path_parameters) - - async def post(self,body: AdmitAllFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[AdmitAllFromLobbyOperation]: - """ - Invoke action admitAllFromLobby - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[AdmitAllFromLobbyOperation] - """ - if body is None: - raise TypeError("body cannot be null.") - request_info = self.to_post_request_information( - body, request_configuration - ) - from ......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ......models.admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - - return await self.request_adapter.send_async(request_info, AdmitAllFromLobbyOperation, error_mapping) - - def to_post_request_information(self,body: AdmitAllFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Invoke action admitAllFromLobby - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - if body is None: - raise TypeError("body cannot be null.") - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - request_info.set_content_from_parsable(self.request_adapter, "application/json", body) - return request_info - - def with_url(self,raw_url: str) -> AdmitAllFromLobbyRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: AdmitAllFromLobbyRequestBuilder - """ - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return AdmitAllFromLobbyRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class AdmitAllFromLobbyRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/communications/calls/item/participants/item/admit_from_lobby/admit_from_lobby_request_builder.py b/msgraph_beta/generated/communications/calls/item/participants/item/admit_from_lobby/admit_from_lobby_request_builder.py deleted file mode 100644 index ca6efa82df9..00000000000 --- a/msgraph_beta/generated/communications/calls/item/participants/item/admit_from_lobby/admit_from_lobby_request_builder.py +++ /dev/null @@ -1,89 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .......models.admit_from_lobby_operation import AdmitFromLobbyOperation - from .......models.o_data_errors.o_data_error import ODataError - from .admit_from_lobby_post_request_body import AdmitFromLobbyPostRequestBody - -class AdmitFromLobbyRequestBuilder(BaseRequestBuilder): - """ - Provides operations to call the admitFromLobby method. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new AdmitFromLobbyRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/communications/calls/{call%2Did}/participants/{participant%2Did}/admitFromLobby", path_parameters) - - async def post(self,body: AdmitFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[AdmitFromLobbyOperation]: - """ - Invoke action admitFromLobby - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[AdmitFromLobbyOperation] - """ - if body is None: - raise TypeError("body cannot be null.") - request_info = self.to_post_request_information( - body, request_configuration - ) - from .......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .......models.admit_from_lobby_operation import AdmitFromLobbyOperation - - return await self.request_adapter.send_async(request_info, AdmitFromLobbyOperation, error_mapping) - - def to_post_request_information(self,body: AdmitFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Invoke action admitFromLobby - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - if body is None: - raise TypeError("body cannot be null.") - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - request_info.set_content_from_parsable(self.request_adapter, "application/json", body) - return request_info - - def with_url(self,raw_url: str) -> AdmitFromLobbyRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: AdmitFromLobbyRequestBuilder - """ - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return AdmitFromLobbyRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class AdmitFromLobbyRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/communications/calls/item/participants/item/participant_item_request_builder.py b/msgraph_beta/generated/communications/calls/item/participants/item/participant_item_request_builder.py index d46cf643051..7186266a74c 100644 --- a/msgraph_beta/generated/communications/calls/item/participants/item/participant_item_request_builder.py +++ b/msgraph_beta/generated/communications/calls/item/participants/item/participant_item_request_builder.py @@ -16,9 +16,7 @@ if TYPE_CHECKING: from ......models.o_data_errors.o_data_error import ODataError from ......models.participant import Participant - from .admit_from_lobby.admit_from_lobby_request_builder import AdmitFromLobbyRequestBuilder from .mute.mute_request_builder import MuteRequestBuilder - from .remove_from_lobby.remove_from_lobby_request_builder import RemoveFromLobbyRequestBuilder from .report_synthetic_media.report_synthetic_media_request_builder import ReportSyntheticMediaRequestBuilder from .start_hold_music.start_hold_music_request_builder import StartHoldMusicRequestBuilder from .stop_hold_music.stop_hold_music_request_builder import StopHoldMusicRequestBuilder @@ -146,15 +144,6 @@ def with_url(self,raw_url: str) -> ParticipantItemRequestBuilder: raise TypeError("raw_url cannot be null.") return ParticipantItemRequestBuilder(self.request_adapter, raw_url) - @property - def admit_from_lobby(self) -> AdmitFromLobbyRequestBuilder: - """ - Provides operations to call the admitFromLobby method. - """ - from .admit_from_lobby.admit_from_lobby_request_builder import AdmitFromLobbyRequestBuilder - - return AdmitFromLobbyRequestBuilder(self.request_adapter, self.path_parameters) - @property def mute(self) -> MuteRequestBuilder: """ @@ -164,15 +153,6 @@ def mute(self) -> MuteRequestBuilder: return MuteRequestBuilder(self.request_adapter, self.path_parameters) - @property - def remove_from_lobby(self) -> RemoveFromLobbyRequestBuilder: - """ - Provides operations to call the removeFromLobby method. - """ - from .remove_from_lobby.remove_from_lobby_request_builder import RemoveFromLobbyRequestBuilder - - return RemoveFromLobbyRequestBuilder(self.request_adapter, self.path_parameters) - @property def report_synthetic_media(self) -> ReportSyntheticMediaRequestBuilder: """ diff --git a/msgraph_beta/generated/communications/calls/item/participants/item/remove_from_lobby/remove_from_lobby_post_request_body.py b/msgraph_beta/generated/communications/calls/item/participants/item/remove_from_lobby/remove_from_lobby_post_request_body.py deleted file mode 100644 index 61398f081e1..00000000000 --- a/msgraph_beta/generated/communications/calls/item/participants/item/remove_from_lobby/remove_from_lobby_post_request_body.py +++ /dev/null @@ -1,50 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter -from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton -from typing import Any, Optional, TYPE_CHECKING, Union - -@dataclass -class RemoveFromLobbyPostRequestBody(AdditionalDataHolder, BackedModel, Parsable): - # Stores model information. - backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) - - # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. - additional_data: dict[str, Any] = field(default_factory=dict) - # The clientContext property - client_context: Optional[str] = None - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> RemoveFromLobbyPostRequestBody: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: RemoveFromLobbyPostRequestBody - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - return RemoveFromLobbyPostRequestBody() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - fields: dict[str, Callable[[Any], None]] = { - "clientContext": lambda n : setattr(self, 'client_context', n.get_str_value()), - } - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - writer.write_str_value("clientContext", self.client_context) - writer.write_additional_data_value(self.additional_data) - - diff --git a/msgraph_beta/generated/communications/calls/item/participants/item/remove_from_lobby/remove_from_lobby_request_builder.py b/msgraph_beta/generated/communications/calls/item/participants/item/remove_from_lobby/remove_from_lobby_request_builder.py deleted file mode 100644 index ba3ee71708b..00000000000 --- a/msgraph_beta/generated/communications/calls/item/participants/item/remove_from_lobby/remove_from_lobby_request_builder.py +++ /dev/null @@ -1,89 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .......models.o_data_errors.o_data_error import ODataError - from .......models.remove_from_lobby_operation import RemoveFromLobbyOperation - from .remove_from_lobby_post_request_body import RemoveFromLobbyPostRequestBody - -class RemoveFromLobbyRequestBuilder(BaseRequestBuilder): - """ - Provides operations to call the removeFromLobby method. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new RemoveFromLobbyRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/communications/calls/{call%2Did}/participants/{participant%2Did}/removeFromLobby", path_parameters) - - async def post(self,body: RemoveFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[RemoveFromLobbyOperation]: - """ - Invoke action removeFromLobby - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[RemoveFromLobbyOperation] - """ - if body is None: - raise TypeError("body cannot be null.") - request_info = self.to_post_request_information( - body, request_configuration - ) - from .......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .......models.remove_from_lobby_operation import RemoveFromLobbyOperation - - return await self.request_adapter.send_async(request_info, RemoveFromLobbyOperation, error_mapping) - - def to_post_request_information(self,body: RemoveFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Invoke action removeFromLobby - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - if body is None: - raise TypeError("body cannot be null.") - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - request_info.set_content_from_parsable(self.request_adapter, "application/json", body) - return request_info - - def with_url(self,raw_url: str) -> RemoveFromLobbyRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: RemoveFromLobbyRequestBuilder - """ - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return RemoveFromLobbyRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class RemoveFromLobbyRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/communications/calls/item/participants/participants_request_builder.py b/msgraph_beta/generated/communications/calls/item/participants/participants_request_builder.py index 0f0803603ab..a6443078ad2 100644 --- a/msgraph_beta/generated/communications/calls/item/participants/participants_request_builder.py +++ b/msgraph_beta/generated/communications/calls/item/participants/participants_request_builder.py @@ -17,7 +17,6 @@ from .....models.o_data_errors.o_data_error import ODataError from .....models.participant import Participant from .....models.participant_collection_response import ParticipantCollectionResponse - from .admit_all_from_lobby.admit_all_from_lobby_request_builder import AdmitAllFromLobbyRequestBuilder from .count.count_request_builder import CountRequestBuilder from .invite.invite_request_builder import InviteRequestBuilder from .item.participant_item_request_builder import ParticipantItemRequestBuilder @@ -130,15 +129,6 @@ def with_url(self,raw_url: str) -> ParticipantsRequestBuilder: raise TypeError("raw_url cannot be null.") return ParticipantsRequestBuilder(self.request_adapter, raw_url) - @property - def admit_all_from_lobby(self) -> AdmitAllFromLobbyRequestBuilder: - """ - Provides operations to call the admitAllFromLobby method. - """ - from .admit_all_from_lobby.admit_all_from_lobby_request_builder import AdmitAllFromLobbyRequestBuilder - - return AdmitAllFromLobbyRequestBuilder(self.request_adapter, self.path_parameters) - @property def count(self) -> CountRequestBuilder: """ diff --git a/msgraph_beta/generated/communications/communications_request_builder.py b/msgraph_beta/generated/communications/communications_request_builder.py index 06c806a9a14..586da4b99fd 100644 --- a/msgraph_beta/generated/communications/communications_request_builder.py +++ b/msgraph_beta/generated/communications/communications_request_builder.py @@ -74,7 +74,7 @@ def online_meetings_with_join_web_url(self,join_web_url: str) -> OnlineMeetingsW async def patch(self,body: CloudCommunications, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[CloudCommunications]: """ Update communications - param body: Represents a container that exposes navigation properties for cloud communications resources. + param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CloudCommunications] """ @@ -108,7 +108,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi def to_patch_request_information(self,body: CloudCommunications, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: """ Update communications - param body: Represents a container that exposes navigation properties for cloud communications resources. + param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ diff --git a/msgraph_beta/generated/device_management/virtual_endpoint/reports/reports_request_builder.py b/msgraph_beta/generated/device_management/virtual_endpoint/reports/reports_request_builder.py index d0c9e766240..5d4c27402e9 100644 --- a/msgraph_beta/generated/device_management/virtual_endpoint/reports/reports_request_builder.py +++ b/msgraph_beta/generated/device_management/virtual_endpoint/reports/reports_request_builder.py @@ -30,6 +30,7 @@ from .get_remote_connection_historical_reports.get_remote_connection_historical_reports_request_builder import GetRemoteConnectionHistoricalReportsRequestBuilder from .get_total_aggregated_remote_connection_reports.get_total_aggregated_remote_connection_reports_request_builder import GetTotalAggregatedRemoteConnectionReportsRequestBuilder from .retrieve_bulk_action_status_report.retrieve_bulk_action_status_report_request_builder import RetrieveBulkActionStatusReportRequestBuilder + from .retrieve_cloud_pc_performance_metrics_report.retrieve_cloud_pc_performance_metrics_report_request_builder import RetrieveCloudPcPerformanceMetricsReportRequestBuilder from .retrieve_cloud_pc_recommendation_reports.retrieve_cloud_pc_recommendation_reports_request_builder import RetrieveCloudPcRecommendationReportsRequestBuilder from .retrieve_cloud_pc_tenant_metrics_report.retrieve_cloud_pc_tenant_metrics_report_request_builder import RetrieveCloudPcTenantMetricsReportRequestBuilder from .retrieve_cloud_pc_troubleshoot_reports.retrieve_cloud_pc_troubleshoot_reports_request_builder import RetrieveCloudPcTroubleshootReportsRequestBuilder @@ -290,6 +291,15 @@ def retrieve_bulk_action_status_report(self) -> RetrieveBulkActionStatusReportRe return RetrieveBulkActionStatusReportRequestBuilder(self.request_adapter, self.path_parameters) + @property + def retrieve_cloud_pc_performance_metrics_report(self) -> RetrieveCloudPcPerformanceMetricsReportRequestBuilder: + """ + Provides operations to call the retrieveCloudPcPerformanceMetricsReport method. + """ + from .retrieve_cloud_pc_performance_metrics_report.retrieve_cloud_pc_performance_metrics_report_request_builder import RetrieveCloudPcPerformanceMetricsReportRequestBuilder + + return RetrieveCloudPcPerformanceMetricsReportRequestBuilder(self.request_adapter, self.path_parameters) + @property def retrieve_cloud_pc_recommendation_reports(self) -> RetrieveCloudPcRecommendationReportsRequestBuilder: """ diff --git a/msgraph_beta/generated/device_management/virtual_endpoint/reports/retrieve_cloud_pc_performance_metrics_report/retrieve_cloud_pc_performance_metrics_report_post_request_body.py b/msgraph_beta/generated/device_management/virtual_endpoint/reports/retrieve_cloud_pc_performance_metrics_report/retrieve_cloud_pc_performance_metrics_report_post_request_body.py new file mode 100644 index 00000000000..cfea81235cd --- /dev/null +++ b/msgraph_beta/generated/device_management/virtual_endpoint/reports/retrieve_cloud_pc_performance_metrics_report/retrieve_cloud_pc_performance_metrics_report_post_request_body.py @@ -0,0 +1,77 @@ +from __future__ import annotations +import datetime +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter +from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .....models.cloud_pc_performance_metric_names_type import CloudPcPerformanceMetricNamesType + from .....models.cloud_pc_vm_performance_metrics_time_range import CloudPcVmPerformanceMetricsTimeRange + +@dataclass +class RetrieveCloudPcPerformanceMetricsReportPostRequestBody(AdditionalDataHolder, BackedModel, Parsable): + # Stores model information. + backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) + + # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + additional_data: dict[str, Any] = field(default_factory=dict) + # The cloudPcId property + cloud_pc_id: Optional[str] = None + # The endDateTime property + end_date_time: Optional[datetime.datetime] = None + # The metricNames property + metric_names: Optional[CloudPcPerformanceMetricNamesType] = None + # The startDateTime property + start_date_time: Optional[datetime.datetime] = None + # The timeRange property + time_range: Optional[CloudPcVmPerformanceMetricsTimeRange] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> RetrieveCloudPcPerformanceMetricsReportPostRequestBody: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: RetrieveCloudPcPerformanceMetricsReportPostRequestBody + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return RetrieveCloudPcPerformanceMetricsReportPostRequestBody() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .....models.cloud_pc_performance_metric_names_type import CloudPcPerformanceMetricNamesType + from .....models.cloud_pc_vm_performance_metrics_time_range import CloudPcVmPerformanceMetricsTimeRange + + from .....models.cloud_pc_performance_metric_names_type import CloudPcPerformanceMetricNamesType + from .....models.cloud_pc_vm_performance_metrics_time_range import CloudPcVmPerformanceMetricsTimeRange + + fields: dict[str, Callable[[Any], None]] = { + "cloudPcId": lambda n : setattr(self, 'cloud_pc_id', n.get_str_value()), + "endDateTime": lambda n : setattr(self, 'end_date_time', n.get_datetime_value()), + "metricNames": lambda n : setattr(self, 'metric_names', n.get_collection_of_enum_values(CloudPcPerformanceMetricNamesType)), + "startDateTime": lambda n : setattr(self, 'start_date_time', n.get_datetime_value()), + "timeRange": lambda n : setattr(self, 'time_range', n.get_enum_value(CloudPcVmPerformanceMetricsTimeRange)), + } + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + writer.write_str_value("cloudPcId", self.cloud_pc_id) + writer.write_datetime_value("endDateTime", self.end_date_time) + writer.write_enum_value("metricNames", self.metric_names) + writer.write_datetime_value("startDateTime", self.start_date_time) + writer.write_enum_value("timeRange", self.time_range) + writer.write_additional_data_value(self.additional_data) + + diff --git a/msgraph_beta/generated/app/calls/item/participants/item/remove_from_lobby/remove_from_lobby_request_builder.py b/msgraph_beta/generated/device_management/virtual_endpoint/reports/retrieve_cloud_pc_performance_metrics_report/retrieve_cloud_pc_performance_metrics_report_request_builder.py similarity index 61% rename from msgraph_beta/generated/app/calls/item/participants/item/remove_from_lobby/remove_from_lobby_request_builder.py rename to msgraph_beta/generated/device_management/virtual_endpoint/reports/retrieve_cloud_pc_performance_metrics_report/retrieve_cloud_pc_performance_metrics_report_request_builder.py index 7f444d2b0b3..7ba9dd2ffd3 100644 --- a/msgraph_beta/generated/app/calls/item/participants/item/remove_from_lobby/remove_from_lobby_request_builder.py +++ b/msgraph_beta/generated/device_management/virtual_endpoint/reports/retrieve_cloud_pc_performance_metrics_report/retrieve_cloud_pc_performance_metrics_report_request_builder.py @@ -14,49 +14,46 @@ from warnings import warn if TYPE_CHECKING: - from .......models.o_data_errors.o_data_error import ODataError - from .......models.remove_from_lobby_operation import RemoveFromLobbyOperation - from .remove_from_lobby_post_request_body import RemoveFromLobbyPostRequestBody + from .....models.o_data_errors.o_data_error import ODataError + from .retrieve_cloud_pc_performance_metrics_report_post_request_body import RetrieveCloudPcPerformanceMetricsReportPostRequestBody -class RemoveFromLobbyRequestBuilder(BaseRequestBuilder): +class RetrieveCloudPcPerformanceMetricsReportRequestBuilder(BaseRequestBuilder): """ - Provides operations to call the removeFromLobby method. + Provides operations to call the retrieveCloudPcPerformanceMetricsReport method. """ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: """ - Instantiates a new RemoveFromLobbyRequestBuilder and sets the default values. + Instantiates a new RetrieveCloudPcPerformanceMetricsReportRequestBuilder and sets the default values. param path_parameters: The raw url or the url-template parameters for the request. param request_adapter: The request adapter to use to execute the requests. Returns: None """ - super().__init__(request_adapter, "{+baseurl}/app/calls/{call%2Did}/participants/{participant%2Did}/removeFromLobby", path_parameters) + super().__init__(request_adapter, "{+baseurl}/deviceManagement/virtualEndpoint/reports/retrieveCloudPcPerformanceMetricsReport", path_parameters) - async def post(self,body: RemoveFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[RemoveFromLobbyOperation]: + async def post(self,body: RetrieveCloudPcPerformanceMetricsReportPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[bytes]: """ - Invoke action removeFromLobby + Invoke action retrieveCloudPcPerformanceMetricsReport param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[RemoveFromLobbyOperation] + Returns: bytes """ if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( body, request_configuration ) - from .......models.o_data_errors.o_data_error import ODataError + from .....models.o_data_errors.o_data_error import ODataError error_mapping: dict[str, type[ParsableFactory]] = { "XXX": ODataError, } if not self.request_adapter: raise Exception("Http core is null") - from .......models.remove_from_lobby_operation import RemoveFromLobbyOperation - - return await self.request_adapter.send_async(request_info, RemoveFromLobbyOperation, error_mapping) + return await self.request_adapter.send_primitive_async(request_info, "bytes", error_mapping) - def to_post_request_information(self,body: RemoveFromLobbyPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: + def to_post_request_information(self,body: RetrieveCloudPcPerformanceMetricsReportPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: """ - Invoke action removeFromLobby + Invoke action retrieveCloudPcPerformanceMetricsReport param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation @@ -65,22 +62,22 @@ def to_post_request_information(self,body: RemoveFromLobbyPostRequestBody, reque raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") + request_info.headers.try_add("Accept", "application/octet-stream, application/json") request_info.set_content_from_parsable(self.request_adapter, "application/json", body) return request_info - def with_url(self,raw_url: str) -> RemoveFromLobbyRequestBuilder: + def with_url(self,raw_url: str) -> RetrieveCloudPcPerformanceMetricsReportRequestBuilder: """ Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. param raw_url: The raw URL to use for the request builder. - Returns: RemoveFromLobbyRequestBuilder + Returns: RetrieveCloudPcPerformanceMetricsReportRequestBuilder """ if raw_url is None: raise TypeError("raw_url cannot be null.") - return RemoveFromLobbyRequestBuilder(self.request_adapter, raw_url) + return RetrieveCloudPcPerformanceMetricsReportRequestBuilder(self.request_adapter, raw_url) @dataclass - class RemoveFromLobbyRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): + class RetrieveCloudPcPerformanceMetricsReportRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ diff --git a/msgraph_beta/generated/identity_governance/access_reviews/access_reviews_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/access_reviews_request_builder.py index 70ccfba4900..598486d2453 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/access_reviews_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/access_reviews_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewSet] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessReviewSet, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewSet] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessReviewSet, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessReviewsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/decisions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/decisions/count/count_request_builder.py index 297bb43e746..110efa49884 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/decisions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/decisions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/decisions/decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/decisions/decisions_request_builder.py index 6689c89ef9f..eb9a3cea395 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/decisions/decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/decisions/decisions_request_builder.py @@ -41,7 +41,6 @@ def by_access_review_instance_decision_item_id(self,access_review_instance_decis param access_review_instance_decision_item_id: The unique identifier of accessReviewInstanceDecisionItem Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_decision_item_id is None: raise TypeError("access_review_instance_decision_item_id cannot be null.") from .item.access_review_instance_decision_item_item_request_builder import AccessReviewInstanceDecisionItemItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Decision param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItemCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AccessReviewInstanceDecisionItem, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AccessReviewInstanceDecisionItem, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> DecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 661dca79713..e0ff21e5f8a 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/access_review_instance_decision_item_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/access_review_instance_decision_item_item_request_builder.py index 76d41a83455..0817e28761d 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/access_review_instance_decision_item_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/access_review_instance_decision_item_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewInstanceDecisionItem, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewInstanceDecisionItem, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceDecisionItemItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceDecisionItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/count/count_request_builder.py index c85f61b320e..4d64a219eb2 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/insights_request_builder.py index 164d3d409e3..a805717daa4 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/insights_request_builder.py @@ -39,7 +39,6 @@ def by_governance_insight_id(self,governance_insight_id: str) -> GovernanceInsig param governance_insight_id: The unique identifier of governanceInsight Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if governance_insight_id is None: raise TypeError("governance_insight_id cannot be null.") from .item.governance_insight_item_request_builder import GovernanceInsightItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsightCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GovernanceInsight, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GovernanceInsight, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/item/governance_insight_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/item/governance_insight_item_request_builder.py index aa387cba718..8b74e2fb9d3 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/item/governance_insight_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/decisions/item/insights/item/governance_insight_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Governan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GovernanceInsight, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GovernanceInsight, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GovernanceInsightItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GovernanceInsightItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/decisions/record_all_decisions/record_all_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/decisions/record_all_decisions/record_all_decisions_request_builder.py index 2f45c89c826..b124110c33c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/decisions/record_all_decisions/record_all_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/decisions/record_all_decisions/record_all_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RecordAllDecisionsPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RecordAllDecisionsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RecordAllDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RecordAllDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RecordAllDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/count/count_request_builder.py index 63462ea14ad..542e12448e4 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/definitions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/definitions_request_builder.py index c09327c2001..994942108e5 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/definitions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/definitions_request_builder.py @@ -40,7 +40,6 @@ def by_access_review_schedule_definition_id(self,access_review_schedule_definiti param access_review_schedule_definition_id: The unique identifier of accessReviewScheduleDefinition Returns: AccessReviewScheduleDefinitionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_schedule_definition_id is None: raise TypeError("access_review_schedule_definition_id cannot be null.") from .item.access_review_schedule_definition_item_request_builder import AccessReviewScheduleDefinitionItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Definiti Returns: Optional[AccessReviewScheduleDefinitionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewset-list-definitions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -92,7 +89,6 @@ async def post(self,body: AccessReviewScheduleDefinition, request_configuration: Returns: Optional[AccessReviewScheduleDefinition] Find more info here: https://learn.microsoft.com/graph/api/accessreviewset-post-definitions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_post_request_information(self,body: AccessReviewScheduleDefinition, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> DefinitionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DefinitionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DefinitionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 9be9f9cc9ab..1225e27c26c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/access_review_schedule_definition_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/access_review_schedule_definition_item_request_builder.py index 1b3e01024ad..92b9e0db21c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/access_review_schedule_definition_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/access_review_schedule_definition_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-delete?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe Returns: Optional[AccessReviewScheduleDefinition] Find more info here: https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def put(self,body: AccessReviewScheduleDefinition, request_configuration: Returns: Optional[AccessReviewScheduleDefinition] Find more info here: https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_put_request_information(self,body: AccessReviewScheduleDefinition, reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessReviewScheduleDefinitionItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: AccessReviewScheduleDefinitionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewScheduleDefinitionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/count/count_request_builder.py index e36e1de28ca..bad6ddb47e5 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index c8fde822a5c..76d52aa389c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/instances_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/instances_request_builder.py index 6b479bd3b03..0df42c586ca 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/instances_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/instances_request_builder.py @@ -40,7 +40,6 @@ def by_access_review_instance_id(self,access_review_instance_id: str) -> AccessR param access_review_instance_id: The unique identifier of accessReviewInstance Returns: AccessReviewInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_id is None: raise TypeError("access_review_instance_id cannot be null.") from .item.access_review_instance_item_request_builder import AccessReviewInstanceItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Instance Returns: Optional[AccessReviewInstanceCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-list-instances?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AccessReviewInstance, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AccessReviewInstance, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> InstancesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InstancesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InstancesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/accept_recommendations/accept_recommendations_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/accept_recommendations/accept_recommendations_request_builder.py index ea8a0f04476..39df9ec9532 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/accept_recommendations/accept_recommendations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/accept_recommendations/accept_recommendations_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> AcceptRecommendationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AcceptRecommendationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AcceptRecommendationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/access_review_instance_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/access_review_instance_item_request_builder.py index 43e39ddc43a..714264c7f61 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/access_review_instance_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/access_review_instance_item_request_builder.py @@ -48,7 +48,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -68,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe Returns: Optional[AccessReviewInstance] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +89,6 @@ async def patch(self,body: AccessReviewInstance, request_configuration: Optional Returns: Optional[AccessReviewInstance] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -114,7 +111,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +122,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -139,7 +134,6 @@ def to_patch_request_information(self,body: AccessReviewInstance, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -154,7 +148,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/apply_decisions/apply_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/apply_decisions/apply_decisions_request_builder.py index 4ae1e1e4954..2a6947f4137 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/apply_decisions/apply_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/apply_decisions/apply_decisions_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> ApplyDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApplyDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApplyDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py index 1c938454a09..276c9a70023 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchApplyCustomDataProvidedResourceDecisionsPostReque Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-batchapplycustomdataprovidedresourcedecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchApplyCustomDataProvidedResourceD param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchApplyCustomDataProvidedResourceDecisions param raw_url: The raw URL to use for the request builder. Returns: BatchApplyCustomDataProvidedResourceDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchApplyCustomDataProvidedResourceDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py index 1b84524363f..ff9b32c3d02 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchRecordDecisionsPostRequestBody, request_configura Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchRecordDecisionsPostRequestBody, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchRecordDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BatchRecordDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchRecordDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py index 8856d6986b2..27df08b4a8d 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py @@ -39,7 +39,6 @@ def by_access_review_reviewer_id(self,access_review_reviewer_id: str) -> AccessR param access_review_reviewer_id: The unique identifier of accessReviewReviewer Returns: AccessReviewReviewerItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_reviewer_id is None: raise TypeError("access_review_reviewer_id cannot be null.") from .item.access_review_reviewer_item_request_builder import AccessReviewReviewerItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Contacte Returns: Optional[AccessReviewReviewerCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-contactedreviewers?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: AccessReviewReviewer, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: AccessReviewReviewer, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> ContactedReviewersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContactedReviewersRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContactedReviewersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/count/count_request_builder.py index a9888004c5c..cd5d812ad3f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py index 710074ddaaf..be4f9268e37 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessReviewReviewer, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessReviewReviewer, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessReviewReviewerItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewReviewerItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewReviewerItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/count/count_request_builder.py index ca4cad3e723..a7a89a35438 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/decisions_request_builder.py index af32de6d459..c74a17d04c0 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/decisions_request_builder.py @@ -41,7 +41,6 @@ def by_access_review_instance_decision_item_id(self,access_review_instance_decis param access_review_instance_decision_item_id: The unique identifier of accessReviewInstanceDecisionItem Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_decision_item_id is None: raise TypeError("access_review_instance_decision_item_id cannot be null.") from .item.access_review_instance_decision_item_item_request_builder import AccessReviewInstanceDecisionItemItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -70,7 +68,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Decision Returns: Optional[AccessReviewInstanceDecisionItemCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -92,7 +89,6 @@ async def post(self,body: AccessReviewInstanceDecisionItem, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_post_request_information(self,body: AccessReviewInstanceDecisionItem, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> DecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index b870839bae1..3e8d8ecbb9b 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py index 92176590957..6af04381a2a 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe Returns: Optional[AccessReviewInstanceDecisionItem] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: AccessReviewInstanceDecisionItem, request_configurati Returns: Optional[AccessReviewInstanceDecisionItem] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: AccessReviewInstanceDecisionItem, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceDecisionItemItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceDecisionItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/count/count_request_builder.py index d1b3da29800..c37748d1d5a 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/insights_request_builder.py index 09d3ff2895c..257d4ae5801 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/insights_request_builder.py @@ -39,7 +39,6 @@ def by_governance_insight_id(self,governance_insight_id: str) -> GovernanceInsig param governance_insight_id: The unique identifier of governanceInsight Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if governance_insight_id is None: raise TypeError("governance_insight_id cannot be null.") from .item.governance_insight_item_request_builder import GovernanceInsightItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsightCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GovernanceInsight, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GovernanceInsight, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py index df71b6744c4..4520c0abe4f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Governan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GovernanceInsight, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GovernanceInsight, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GovernanceInsightItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GovernanceInsightItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py index ed7d349040f..9176bc90afd 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RecordAllDecisionsPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RecordAllDecisionsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RecordAllDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RecordAllDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RecordAllDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/definition/definition_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/definition/definition_request_builder.py index d868e54f5a2..2fba8cee466 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/definition/definition_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/definition/definition_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Definiti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewScheduleDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> DefinitionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DefinitionRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DefinitionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/reset_decisions/reset_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/reset_decisions/reset_decisions_request_builder.py index 5d15cfc9ed0..91010207f5e 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/reset_decisions/reset_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/reset_decisions/reset_decisions_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> ResetDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ResetDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ResetDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/send_reminder/send_reminder_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/send_reminder/send_reminder_request_builder.py index 07eebf8cd95..f55a607733d 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/send_reminder/send_reminder_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/send_reminder/send_reminder_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> SendReminderRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SendReminderRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SendReminderRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/count/count_request_builder.py index fb10b7b96a0..f63f737417c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 7f82b6f9870..58a05c5aaf7 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py index 632a9e4df88..35082fb700b 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-acceptrecommendations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> AcceptRecommendationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AcceptRecommendationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AcceptRecommendationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/access_review_stage_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/access_review_stage_item_request_builder.py index 0fd765554cd..f2f389f2cb9 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/access_review_stage_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/access_review_stage_item_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe Returns: Optional[AccessReviewStage] Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessReviewStage, request_configuration: Optional[Re Returns: Optional[AccessReviewStage] Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessReviewStage, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessReviewStageItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewStageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewStageItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py index 93c281082e8..74e3e7c1579 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchRecordDecisionsPostRequestBody, request_configura Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-batchrecorddecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchRecordDecisionsPostRequestBody, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchRecordDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BatchRecordDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchRecordDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/count/count_request_builder.py index 26042f21f4b..36071cdcc6e 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/decisions_request_builder.py index 78964f62ff9..662bd7faaf0 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/decisions_request_builder.py @@ -41,7 +41,6 @@ def by_access_review_instance_decision_item_id(self,access_review_instance_decis param access_review_instance_decision_item_id: The unique identifier of accessReviewInstanceDecisionItem Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_decision_item_id is None: raise TypeError("access_review_instance_decision_item_id cannot be null.") from .item.access_review_instance_decision_item_item_request_builder import AccessReviewInstanceDecisionItemItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -70,7 +68,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Decision Returns: Optional[AccessReviewInstanceDecisionItemCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -92,7 +89,6 @@ async def post(self,body: AccessReviewInstanceDecisionItem, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_post_request_information(self,body: AccessReviewInstanceDecisionItem, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> DecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 6ed01aec1de..d85f4b472ed 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py index 7c7843abc2e..3e9f2d6f375 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe Returns: Optional[AccessReviewInstanceDecisionItem] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: AccessReviewInstanceDecisionItem, request_configurati Returns: Optional[AccessReviewInstanceDecisionItem] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: AccessReviewInstanceDecisionItem, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceDecisionItemItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceDecisionItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py index 5f1cc654c8a..6618b0b6d81 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/insights_request_builder.py index 7babbee3622..dcbfd847f9a 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/insights_request_builder.py @@ -39,7 +39,6 @@ def by_governance_insight_id(self,governance_insight_id: str) -> GovernanceInsig param governance_insight_id: The unique identifier of governanceInsight Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if governance_insight_id is None: raise TypeError("governance_insight_id cannot be null.") from .item.governance_insight_item_request_builder import GovernanceInsightItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsightCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GovernanceInsight, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GovernanceInsight, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py index d06efc7548f..2e1c7bb067f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Governan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GovernanceInsight, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GovernanceInsight, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GovernanceInsightItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GovernanceInsightItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py index cc8d2e771f2..9a3ef75695f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RecordAllDecisionsPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RecordAllDecisionsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RecordAllDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RecordAllDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RecordAllDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/stop/stop_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/stop/stop_request_builder.py index c3b859d7825..acb402b04c7 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/stop/stop_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/item/stop/stop_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> StopRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/stages_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/stages_request_builder.py index b96c8ef53d3..cf9680826fe 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/stages_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stages/stages_request_builder.py @@ -40,7 +40,6 @@ def by_access_review_stage_id(self,access_review_stage_id: str) -> AccessReviewS param access_review_stage_id: The unique identifier of accessReviewStage Returns: AccessReviewStageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_stage_id is None: raise TypeError("access_review_stage_id cannot be null.") from .item.access_review_stage_item_request_builder import AccessReviewStageItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[StagesRe Returns: Optional[AccessReviewStageCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-stages?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AccessReviewStage, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AccessReviewStage, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> StagesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StagesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StagesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stop/stop_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stop/stop_request_builder.py index 4e016d5f41d..8946c4d0b07 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stop/stop_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stop/stop_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> StopRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py index 633fa4f82b1..42910e299eb 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> StopApplyDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopApplyDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopApplyDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/stop/stop_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/stop/stop_request_builder.py index 7efa1238a3a..20326935c82 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/stop/stop_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/definitions/item/stop/stop_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> StopRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/count/count_request_builder.py index b47cb286838..8b8f1c1d1da 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/history_definitions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/history_definitions_request_builder.py index 17b31318dd0..78ba9760c7d 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/history_definitions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/history_definitions_request_builder.py @@ -39,7 +39,6 @@ def by_access_review_history_definition_id(self,access_review_history_definition param access_review_history_definition_id: The unique identifier of accessReviewHistoryDefinition Returns: AccessReviewHistoryDefinitionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_history_definition_id is None: raise TypeError("access_review_history_definition_id cannot be null.") from .item.access_review_history_definition_item_request_builder import AccessReviewHistoryDefinitionItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[HistoryD Returns: Optional[AccessReviewHistoryDefinitionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewset-list-historydefinitions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: AccessReviewHistoryDefinition, request_configuration: Returns: Optional[AccessReviewHistoryDefinition] Find more info here: https://learn.microsoft.com/graph/api/accessreviewset-post-historydefinitions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: AccessReviewHistoryDefinition, reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> HistoryDefinitionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: HistoryDefinitionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return HistoryDefinitionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/access_review_history_definition_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/access_review_history_definition_item_request_builder.py index 44919c57a67..1c576644a3f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/access_review_history_definition_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/access_review_history_definition_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe Returns: Optional[AccessReviewHistoryDefinition] Find more info here: https://learn.microsoft.com/graph/api/accessreviewhistorydefinition-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewHistoryDefinition, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewHistoryDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewHistoryDefinition, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessReviewHistoryDefinitionItemRequestBuild param raw_url: The raw URL to use for the request builder. Returns: AccessReviewHistoryDefinitionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewHistoryDefinitionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/count/count_request_builder.py index 02d94a0fb62..1452b6e07aa 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/instances_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/instances_request_builder.py index dcc7a848db3..a1b99f296e9 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/instances_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/instances_request_builder.py @@ -39,7 +39,6 @@ def by_access_review_history_instance_id(self,access_review_history_instance_id: param access_review_history_instance_id: The unique identifier of accessReviewHistoryInstance Returns: AccessReviewHistoryInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_history_instance_id is None: raise TypeError("access_review_history_instance_id cannot be null.") from .item.access_review_history_instance_item_request_builder import AccessReviewHistoryInstanceItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Instance Returns: Optional[AccessReviewHistoryInstanceCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewhistorydefinition-list-instances?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: AccessReviewHistoryInstance, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewHistoryInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: AccessReviewHistoryInstance, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> InstancesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InstancesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InstancesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/item/access_review_history_instance_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/item/access_review_history_instance_item_request_builder.py index 32f1463c2fa..f24925f0666 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/item/access_review_history_instance_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/item/access_review_history_instance_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewHistoryInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessReviewHistoryInstance, request_configuration: O param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewHistoryInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessReviewHistoryInstance, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessReviewHistoryInstanceItemRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: AccessReviewHistoryInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewHistoryInstanceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/item/generate_download_uri/generate_download_uri_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/item/generate_download_uri/generate_download_uri_request_builder.py index c2659727750..b09257ec32d 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/item/generate_download_uri/generate_download_uri_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/history_definitions/item/instances/item/generate_download_uri/generate_download_uri_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[AccessReviewHistoryInstance] Find more info here: https://learn.microsoft.com/graph/api/accessreviewhistoryinstance-generatedownloaduri?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GenerateDownloadUriRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GenerateDownloadUriRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GenerateDownloadUriRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/count/count_request_builder.py index 46af0eaab9d..a044e35fb3e 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 3f186c91836..0c6542b2872 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/instances_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/instances_request_builder.py index 9130cf4c266..6203e029b4f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/instances_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/instances_request_builder.py @@ -40,7 +40,6 @@ def by_access_review_instance_id(self,access_review_instance_id: str) -> AccessR param access_review_instance_id: The unique identifier of accessReviewInstance Returns: AccessReviewInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_id is None: raise TypeError("access_review_instance_id cannot be null.") from .item.access_review_instance_item_request_builder import AccessReviewInstanceItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -68,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Instance param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -90,7 +87,6 @@ async def post(self,body: AccessReviewInstance, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: AccessReviewInstance, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> InstancesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InstancesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InstancesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/accept_recommendations/accept_recommendations_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/accept_recommendations/accept_recommendations_request_builder.py index b904ce357d7..22aa3c2d5c3 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/accept_recommendations/accept_recommendations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/accept_recommendations/accept_recommendations_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> AcceptRecommendationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AcceptRecommendationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AcceptRecommendationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/access_review_instance_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/access_review_instance_item_request_builder.py index baa4637a12e..50c8d806a58 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/access_review_instance_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/access_review_instance_item_request_builder.py @@ -48,7 +48,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -67,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -89,7 +87,6 @@ async def patch(self,body: AccessReviewInstance, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -112,7 +109,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -124,7 +120,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -137,7 +132,6 @@ def to_patch_request_information(self,body: AccessReviewInstance, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -152,7 +146,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/apply_decisions/apply_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/apply_decisions/apply_decisions_request_builder.py index b61facab203..f941869b611 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/apply_decisions/apply_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/apply_decisions/apply_decisions_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> ApplyDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApplyDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApplyDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py index d3c3edbe35c..a9ae8378ed0 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchApplyCustomDataProvidedResourceDecisionsPostReque Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-batchapplycustomdataprovidedresourcedecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchApplyCustomDataProvidedResourceD param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchApplyCustomDataProvidedResourceDecisions param raw_url: The raw URL to use for the request builder. Returns: BatchApplyCustomDataProvidedResourceDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchApplyCustomDataProvidedResourceDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py index e95a60ed6d6..0b8dfb86a0f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchRecordDecisionsPostRequestBody, request_configura Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchRecordDecisionsPostRequestBody, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchRecordDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BatchRecordDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchRecordDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py index 430eeb8a7bb..85de03b0af1 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py @@ -39,7 +39,6 @@ def by_access_review_reviewer_id(self,access_review_reviewer_id: str) -> AccessR param access_review_reviewer_id: The unique identifier of accessReviewReviewer Returns: AccessReviewReviewerItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_reviewer_id is None: raise TypeError("access_review_reviewer_id cannot be null.") from .item.access_review_reviewer_item_request_builder import AccessReviewReviewerItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Contacte param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewerCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessReviewReviewer, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessReviewReviewer, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> ContactedReviewersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContactedReviewersRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContactedReviewersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/count/count_request_builder.py index 75c6908775e..06131cb73e2 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py index 8d22b660f6b..b3fac816677 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessReviewReviewer, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessReviewReviewer, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessReviewReviewerItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewReviewerItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewReviewerItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/count/count_request_builder.py index d56d3bc094a..77e0c9e6e97 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/decisions_request_builder.py index c1fdce8ac7f..4db8fc0d14f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/decisions_request_builder.py @@ -41,7 +41,6 @@ def by_access_review_instance_decision_item_id(self,access_review_instance_decis param access_review_instance_decision_item_id: The unique identifier of accessReviewInstanceDecisionItem Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_decision_item_id is None: raise TypeError("access_review_instance_decision_item_id cannot be null.") from .item.access_review_instance_decision_item_item_request_builder import AccessReviewInstanceDecisionItemItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Decision param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItemCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AccessReviewInstanceDecisionItem, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AccessReviewInstanceDecisionItem, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> DecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 79a3e8dae22..7bbb6eb3a07 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py index c700d33588d..73b72e28449 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewInstanceDecisionItem, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewInstanceDecisionItem, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceDecisionItemItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceDecisionItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/count/count_request_builder.py index bc2840215d3..b61e0b01500 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/insights_request_builder.py index 1aa40f2128e..f1c0ff1cf98 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/insights_request_builder.py @@ -39,7 +39,6 @@ def by_governance_insight_id(self,governance_insight_id: str) -> GovernanceInsig param governance_insight_id: The unique identifier of governanceInsight Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if governance_insight_id is None: raise TypeError("governance_insight_id cannot be null.") from .item.governance_insight_item_request_builder import GovernanceInsightItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsightCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GovernanceInsight, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GovernanceInsight, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py index ef5cb90acbc..5b29746a05d 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Governan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GovernanceInsight, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GovernanceInsight, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GovernanceInsightItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GovernanceInsightItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py index ab8f95549c8..67f8524047c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RecordAllDecisionsPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RecordAllDecisionsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RecordAllDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RecordAllDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RecordAllDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/definition/definition_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/definition/definition_request_builder.py index 93b4515a484..37297ac3cd6 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/definition/definition_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/definition/definition_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Definiti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewScheduleDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> DefinitionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DefinitionRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DefinitionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/reset_decisions/reset_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/reset_decisions/reset_decisions_request_builder.py index 78ed0640828..57ccf1f75d2 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/reset_decisions/reset_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/reset_decisions/reset_decisions_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> ResetDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ResetDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ResetDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/send_reminder/send_reminder_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/send_reminder/send_reminder_request_builder.py index 189e9ce91a4..f39996269ec 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/send_reminder/send_reminder_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/send_reminder/send_reminder_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> SendReminderRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SendReminderRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SendReminderRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/count/count_request_builder.py index 9bd371d0fc0..4f517b0baa5 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 9518efc4520..f5d9f854dda 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py index a79e9607d7e..cd732ff2f09 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-acceptrecommendations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> AcceptRecommendationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AcceptRecommendationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AcceptRecommendationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/access_review_stage_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/access_review_stage_item_request_builder.py index 5d0fd909c00..ae905dc2fd3 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/access_review_stage_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/access_review_stage_item_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: AccessReviewStage, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: AccessReviewStage, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> AccessReviewStageItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewStageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewStageItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py index 3732c97707a..9b36b62b337 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchRecordDecisionsPostRequestBody, request_configura Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-batchrecorddecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchRecordDecisionsPostRequestBody, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchRecordDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BatchRecordDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchRecordDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/count/count_request_builder.py index 8d43b8cd2a9..fe56c9763aa 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/decisions_request_builder.py index 78393ff3bde..7761335ffae 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/decisions_request_builder.py @@ -41,7 +41,6 @@ def by_access_review_instance_decision_item_id(self,access_review_instance_decis param access_review_instance_decision_item_id: The unique identifier of accessReviewInstanceDecisionItem Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_decision_item_id is None: raise TypeError("access_review_instance_decision_item_id cannot be null.") from .item.access_review_instance_decision_item_item_request_builder import AccessReviewInstanceDecisionItemItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Decision param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItemCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AccessReviewInstanceDecisionItem, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AccessReviewInstanceDecisionItem, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> DecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 253e7c19ca4..2ce400f3f1f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py index a0af7782ee3..03746336b76 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewInstanceDecisionItem, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewInstanceDecisionItem, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceDecisionItemItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceDecisionItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py index d9058c2f6cd..e498e3abc04 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/insights_request_builder.py index d02287b00a1..d968ef584a6 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/insights_request_builder.py @@ -39,7 +39,6 @@ def by_governance_insight_id(self,governance_insight_id: str) -> GovernanceInsig param governance_insight_id: The unique identifier of governanceInsight Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if governance_insight_id is None: raise TypeError("governance_insight_id cannot be null.") from .item.governance_insight_item_request_builder import GovernanceInsightItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsightCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GovernanceInsight, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GovernanceInsight, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py index 32ab36790b7..8aa1d38a4a6 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Governan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GovernanceInsight, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GovernanceInsight, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GovernanceInsightItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GovernanceInsightItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py index 4e4e3f4d5ed..03e4e71e00d 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RecordAllDecisionsPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RecordAllDecisionsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RecordAllDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RecordAllDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RecordAllDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/stop/stop_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/stop/stop_request_builder.py index 4cda72e8847..8ce9be8d64c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/stop/stop_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/item/stop/stop_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> StopRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/stages_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/stages_request_builder.py index 73e5f8d3e42..97d641e95c7 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/stages_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stages/stages_request_builder.py @@ -40,7 +40,6 @@ def by_access_review_stage_id(self,access_review_stage_id: str) -> AccessReviewS param access_review_stage_id: The unique identifier of accessReviewStage Returns: AccessReviewStageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_stage_id is None: raise TypeError("access_review_stage_id cannot be null.") from .item.access_review_stage_item_request_builder import AccessReviewStageItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -68,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[StagesRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStageCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -90,7 +87,6 @@ async def post(self,body: AccessReviewStage, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: AccessReviewStage, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> StagesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StagesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StagesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stop/stop_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stop/stop_request_builder.py index 4b2c6b3cf74..f1684e56714 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stop/stop_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stop/stop_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> StopRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py index 596b75c70af..fb243675792 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> StopApplyDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopApplyDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopApplyDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/policy/policy_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/policy/policy_request_builder.py index 98693ffb178..5889596ded5 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/policy/policy_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/policy/policy_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[PolicyRe Returns: Optional[AccessReviewPolicy] Find more info here: https://learn.microsoft.com/graph/api/accessreviewpolicy-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewPolicy, request_configuration: Optional[R Returns: Optional[AccessReviewPolicy] Find more info here: https://learn.microsoft.com/graph/api/accessreviewpolicy-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewPolicy, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> PolicyRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PolicyRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PolicyRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/count/count_request_builder.py index 8028df8b5df..1dfbd0014ce 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/decisions_request_builder.py index fc74ccabef0..40ace7eee71 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/decisions_request_builder.py @@ -41,7 +41,6 @@ def by_access_review_instance_decision_item_id(self,access_review_instance_decis param access_review_instance_decision_item_id: The unique identifier of accessReviewInstanceDecisionItem Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_decision_item_id is None: raise TypeError("access_review_instance_decision_item_id cannot be null.") from .item.access_review_instance_decision_item_item_request_builder import AccessReviewInstanceDecisionItemItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Decision param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItemCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AccessReviewInstanceDecisionItem, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AccessReviewInstanceDecisionItem, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> DecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 1eea73228cc..7669a66a03c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/access_review_instance_decision_item_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/access_review_instance_decision_item_item_request_builder.py index 27d28ad0355..ed9d414e0c7 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/access_review_instance_decision_item_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/access_review_instance_decision_item_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewInstanceDecisionItem, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewInstanceDecisionItem, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceDecisionItemItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceDecisionItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/count/count_request_builder.py index 03005f8d8f6..dce19627d33 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/insights_request_builder.py index ec1979cb71c..330724c9714 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/insights_request_builder.py @@ -39,7 +39,6 @@ def by_governance_insight_id(self,governance_insight_id: str) -> GovernanceInsig param governance_insight_id: The unique identifier of governanceInsight Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if governance_insight_id is None: raise TypeError("governance_insight_id cannot be null.") from .item.governance_insight_item_request_builder import GovernanceInsightItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsightCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GovernanceInsight, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GovernanceInsight, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/item/governance_insight_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/item/governance_insight_item_request_builder.py index 48fc04a375f..f376219ed32 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/item/governance_insight_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/item/insights/item/governance_insight_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Governan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GovernanceInsight, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GovernanceInsight, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GovernanceInsightItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GovernanceInsightItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/record_all_decisions/record_all_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/record_all_decisions/record_all_decisions_request_builder.py index 5f85acd5bc1..b2304bfa5d5 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/record_all_decisions/record_all_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/decisions/record_all_decisions/record_all_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RecordAllDecisionsPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RecordAllDecisionsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RecordAllDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RecordAllDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RecordAllDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/count/count_request_builder.py index 2b3eca93f76..3f5a40f0a53 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/definitions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/definitions_request_builder.py index 9480b12bac8..914264ebbc1 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/definitions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/definitions_request_builder.py @@ -40,7 +40,6 @@ def by_access_review_schedule_definition_id(self,access_review_schedule_definiti param access_review_schedule_definition_id: The unique identifier of accessReviewScheduleDefinition Returns: AccessReviewScheduleDefinitionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_schedule_definition_id is None: raise TypeError("access_review_schedule_definition_id cannot be null.") from .item.access_review_schedule_definition_item_request_builder import AccessReviewScheduleDefinitionItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Definiti Returns: Optional[AccessReviewScheduleDefinitionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/unifiedroot-list-definitions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -92,7 +89,6 @@ async def post(self,body: AccessReviewScheduleDefinition, request_configuration: Returns: Optional[AccessReviewScheduleDefinition] Find more info here: https://learn.microsoft.com/graph/api/unifiedroot-post-definitions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_post_request_information(self,body: AccessReviewScheduleDefinition, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> DefinitionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DefinitionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DefinitionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 2780f1b595e..45b45563d0a 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/access_review_schedule_definition_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/access_review_schedule_definition_item_request_builder.py index eebc3c099de..c8ccc4ac71e 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/access_review_schedule_definition_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/access_review_schedule_definition_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewScheduleDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewScheduleDefinition, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewScheduleDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewScheduleDefinition, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessReviewScheduleDefinitionItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: AccessReviewScheduleDefinitionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewScheduleDefinitionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/count/count_request_builder.py index b38b3adaddb..dde424e91c1 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 9c1eeb5202c..c18065bbb59 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/instances_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/instances_request_builder.py index d3aa007deb7..5a580e00916 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/instances_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/instances_request_builder.py @@ -40,7 +40,6 @@ def by_access_review_instance_id(self,access_review_instance_id: str) -> AccessR param access_review_instance_id: The unique identifier of accessReviewInstance Returns: AccessReviewInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_id is None: raise TypeError("access_review_instance_id cannot be null.") from .item.access_review_instance_item_request_builder import AccessReviewInstanceItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -68,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Instance param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -90,7 +87,6 @@ async def post(self,body: AccessReviewInstance, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: AccessReviewInstance, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> InstancesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InstancesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InstancesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/accept_recommendations/accept_recommendations_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/accept_recommendations/accept_recommendations_request_builder.py index 881e63bc654..074846baa50 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/accept_recommendations/accept_recommendations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/accept_recommendations/accept_recommendations_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> AcceptRecommendationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AcceptRecommendationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AcceptRecommendationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/access_review_instance_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/access_review_instance_item_request_builder.py index 76909878756..a152f183aac 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/access_review_instance_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/access_review_instance_item_request_builder.py @@ -48,7 +48,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -67,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -89,7 +87,6 @@ async def patch(self,body: AccessReviewInstance, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -112,7 +109,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -124,7 +120,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -137,7 +132,6 @@ def to_patch_request_information(self,body: AccessReviewInstance, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -152,7 +146,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/apply_decisions/apply_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/apply_decisions/apply_decisions_request_builder.py index d9b15c8f68b..3ea3d5e3b37 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/apply_decisions/apply_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/apply_decisions/apply_decisions_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> ApplyDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApplyDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApplyDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py index 4e6f80f242a..b5de9f6ac22 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchApplyCustomDataProvidedResourceDecisionsPostReque Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-batchapplycustomdataprovidedresourcedecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchApplyCustomDataProvidedResourceD param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchApplyCustomDataProvidedResourceDecisions param raw_url: The raw URL to use for the request builder. Returns: BatchApplyCustomDataProvidedResourceDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchApplyCustomDataProvidedResourceDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py index 496457f964c..7cc973de4c9 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchRecordDecisionsPostRequestBody, request_configura Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchRecordDecisionsPostRequestBody, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchRecordDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BatchRecordDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchRecordDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py index 91c16258885..ea92225b6dc 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py @@ -39,7 +39,6 @@ def by_access_review_reviewer_id(self,access_review_reviewer_id: str) -> AccessR param access_review_reviewer_id: The unique identifier of accessReviewReviewer Returns: AccessReviewReviewerItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_reviewer_id is None: raise TypeError("access_review_reviewer_id cannot be null.") from .item.access_review_reviewer_item_request_builder import AccessReviewReviewerItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Contacte param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewerCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessReviewReviewer, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessReviewReviewer, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> ContactedReviewersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContactedReviewersRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContactedReviewersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/count/count_request_builder.py index 462c58fafc2..d5184d2f71e 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py index 8dd7ce40c39..a68a1fbb6cd 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessReviewReviewer, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessReviewReviewer, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessReviewReviewerItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewReviewerItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewReviewerItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/count/count_request_builder.py index 696c9fa9102..a8569210e7f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/decisions_request_builder.py index 56e2126e31b..d5beabaa21a 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/decisions_request_builder.py @@ -41,7 +41,6 @@ def by_access_review_instance_decision_item_id(self,access_review_instance_decis param access_review_instance_decision_item_id: The unique identifier of accessReviewInstanceDecisionItem Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_decision_item_id is None: raise TypeError("access_review_instance_decision_item_id cannot be null.") from .item.access_review_instance_decision_item_item_request_builder import AccessReviewInstanceDecisionItemItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Decision param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItemCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AccessReviewInstanceDecisionItem, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AccessReviewInstanceDecisionItem, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> DecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index b74b3734653..bee6ec1fc06 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py index bb8c74968fe..7e51278b30f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewInstanceDecisionItem, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewInstanceDecisionItem, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceDecisionItemItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceDecisionItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/count/count_request_builder.py index 61687988e41..4fc8392311d 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/insights_request_builder.py index d8f56d6a782..f9712bf41c9 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/insights_request_builder.py @@ -39,7 +39,6 @@ def by_governance_insight_id(self,governance_insight_id: str) -> GovernanceInsig param governance_insight_id: The unique identifier of governanceInsight Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if governance_insight_id is None: raise TypeError("governance_insight_id cannot be null.") from .item.governance_insight_item_request_builder import GovernanceInsightItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsightCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GovernanceInsight, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GovernanceInsight, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py index 3a31e171c9a..8b81202f644 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Governan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GovernanceInsight, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GovernanceInsight, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GovernanceInsightItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GovernanceInsightItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py index 1c5af06158d..db5a488fd2c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RecordAllDecisionsPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RecordAllDecisionsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RecordAllDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RecordAllDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RecordAllDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/definition/definition_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/definition/definition_request_builder.py index 23fa10b9a18..0fd75fbd3ae 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/definition/definition_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/definition/definition_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Definiti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewScheduleDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> DefinitionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DefinitionRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DefinitionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/reset_decisions/reset_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/reset_decisions/reset_decisions_request_builder.py index 97a585c76e3..c95296460fb 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/reset_decisions/reset_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/reset_decisions/reset_decisions_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> ResetDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ResetDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ResetDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/send_reminder/send_reminder_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/send_reminder/send_reminder_request_builder.py index a658845f115..92747add343 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/send_reminder/send_reminder_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/send_reminder/send_reminder_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> SendReminderRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SendReminderRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SendReminderRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/count/count_request_builder.py index 545661a040d..b37f77d1096 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 604f5b0856c..68b9d6d2c0e 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py index d4e1af03b08..4927301a4c1 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-acceptrecommendations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> AcceptRecommendationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AcceptRecommendationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AcceptRecommendationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/access_review_stage_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/access_review_stage_item_request_builder.py index ceb1c189aa3..0bb2bc3d060 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/access_review_stage_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/access_review_stage_item_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: AccessReviewStage, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: AccessReviewStage, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> AccessReviewStageItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewStageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewStageItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py index 1fa5fb5bc9f..bde00a69c75 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchRecordDecisionsPostRequestBody, request_configura Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-batchrecorddecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchRecordDecisionsPostRequestBody, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchRecordDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BatchRecordDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchRecordDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/count/count_request_builder.py index 5b57de58b0b..8f990aabf50 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/decisions_request_builder.py index c406b851961..d2390e8c57d 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/decisions_request_builder.py @@ -41,7 +41,6 @@ def by_access_review_instance_decision_item_id(self,access_review_instance_decis param access_review_instance_decision_item_id: The unique identifier of accessReviewInstanceDecisionItem Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_decision_item_id is None: raise TypeError("access_review_instance_decision_item_id cannot be null.") from .item.access_review_instance_decision_item_item_request_builder import AccessReviewInstanceDecisionItemItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Decision param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItemCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AccessReviewInstanceDecisionItem, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AccessReviewInstanceDecisionItem, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> DecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 9388139c274..8af630062fd 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py index 9e26456707f..7bf7d6f637f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewInstanceDecisionItem, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewInstanceDecisionItem, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceDecisionItemItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceDecisionItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py index 960d8b4e984..8b35168251c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/insights_request_builder.py index 1032c73d060..2f484aa1c93 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/insights_request_builder.py @@ -39,7 +39,6 @@ def by_governance_insight_id(self,governance_insight_id: str) -> GovernanceInsig param governance_insight_id: The unique identifier of governanceInsight Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if governance_insight_id is None: raise TypeError("governance_insight_id cannot be null.") from .item.governance_insight_item_request_builder import GovernanceInsightItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsightCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GovernanceInsight, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GovernanceInsight, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py index 8f64c280cb0..17f01727782 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Governan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GovernanceInsight, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GovernanceInsight, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GovernanceInsightItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GovernanceInsightItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py index 86d4efae87f..05196697541 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RecordAllDecisionsPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RecordAllDecisionsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RecordAllDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RecordAllDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RecordAllDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/stop/stop_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/stop/stop_request_builder.py index 0b8a58a06f3..8da76567baf 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/stop/stop_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/item/stop/stop_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> StopRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/stages_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/stages_request_builder.py index e0b65d8eaff..0aae4bcb648 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/stages_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stages/stages_request_builder.py @@ -40,7 +40,6 @@ def by_access_review_stage_id(self,access_review_stage_id: str) -> AccessReviewS param access_review_stage_id: The unique identifier of accessReviewStage Returns: AccessReviewStageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_stage_id is None: raise TypeError("access_review_stage_id cannot be null.") from .item.access_review_stage_item_request_builder import AccessReviewStageItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -68,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[StagesRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStageCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -90,7 +87,6 @@ async def post(self,body: AccessReviewStage, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: AccessReviewStage, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> StagesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StagesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StagesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stop/stop_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stop/stop_request_builder.py index 9ef36e28cef..48cd85b6782 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stop/stop_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stop/stop_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> StopRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py index 1dee717d234..49ced3c2b24 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> StopApplyDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopApplyDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopApplyDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/stop/stop_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/stop/stop_request_builder.py index 8e8665432eb..392944fb54b 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/stop/stop_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/definitions/item/stop/stop_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> StopRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/count/count_request_builder.py index 887cf25ade1..0afd002ae36 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 84f8e5f3c24..b9b1485a5b5 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/instances_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/instances_request_builder.py index 025077a5386..fb520b2cf28 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/instances_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/instances_request_builder.py @@ -40,7 +40,6 @@ def by_access_review_instance_id(self,access_review_instance_id: str) -> AccessR param access_review_instance_id: The unique identifier of accessReviewInstance Returns: AccessReviewInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_id is None: raise TypeError("access_review_instance_id cannot be null.") from .item.access_review_instance_item_request_builder import AccessReviewInstanceItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -68,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Instance param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -90,7 +87,6 @@ async def post(self,body: AccessReviewInstance, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: AccessReviewInstance, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> InstancesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InstancesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InstancesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/accept_recommendations/accept_recommendations_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/accept_recommendations/accept_recommendations_request_builder.py index 3ce9a3efe2d..f05012f0a7d 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/accept_recommendations/accept_recommendations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/accept_recommendations/accept_recommendations_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> AcceptRecommendationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AcceptRecommendationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AcceptRecommendationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/access_review_instance_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/access_review_instance_item_request_builder.py index c23ff6ce018..9c2e86cc7f0 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/access_review_instance_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/access_review_instance_item_request_builder.py @@ -48,7 +48,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -67,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -89,7 +87,6 @@ async def patch(self,body: AccessReviewInstance, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -112,7 +109,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -124,7 +120,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -137,7 +132,6 @@ def to_patch_request_information(self,body: AccessReviewInstance, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -152,7 +146,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/apply_decisions/apply_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/apply_decisions/apply_decisions_request_builder.py index 1c9e832b125..3948b14691f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/apply_decisions/apply_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/apply_decisions/apply_decisions_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> ApplyDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApplyDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApplyDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py index f3bb5f063f7..e9843d5a623 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/batch_apply_custom_data_provided_resource_decisions/batch_apply_custom_data_provided_resource_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchApplyCustomDataProvidedResourceDecisionsPostReque Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-batchapplycustomdataprovidedresourcedecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchApplyCustomDataProvidedResourceD param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchApplyCustomDataProvidedResourceDecisions param raw_url: The raw URL to use for the request builder. Returns: BatchApplyCustomDataProvidedResourceDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchApplyCustomDataProvidedResourceDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py index be0a7ade736..5d60982c00e 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/batch_record_decisions/batch_record_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchRecordDecisionsPostRequestBody, request_configura Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchRecordDecisionsPostRequestBody, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchRecordDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BatchRecordDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchRecordDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py index f0536031c72..f591a0b0f60 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/contacted_reviewers_request_builder.py @@ -39,7 +39,6 @@ def by_access_review_reviewer_id(self,access_review_reviewer_id: str) -> AccessR param access_review_reviewer_id: The unique identifier of accessReviewReviewer Returns: AccessReviewReviewerItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_reviewer_id is None: raise TypeError("access_review_reviewer_id cannot be null.") from .item.access_review_reviewer_item_request_builder import AccessReviewReviewerItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Contacte param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewerCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessReviewReviewer, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessReviewReviewer, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> ContactedReviewersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContactedReviewersRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContactedReviewersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/count/count_request_builder.py index b6a6dacda99..51c90df10ba 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py index 67e2bb13b66..e22adaeb4bd 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/contacted_reviewers/item/access_review_reviewer_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessReviewReviewer, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewReviewer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessReviewReviewer, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessReviewReviewerItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewReviewerItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewReviewerItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/count/count_request_builder.py index 770128c4854..df1e5462554 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/decisions_request_builder.py index ae804a2bdcb..f2ad24b0fd4 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/decisions_request_builder.py @@ -41,7 +41,6 @@ def by_access_review_instance_decision_item_id(self,access_review_instance_decis param access_review_instance_decision_item_id: The unique identifier of accessReviewInstanceDecisionItem Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_decision_item_id is None: raise TypeError("access_review_instance_decision_item_id cannot be null.") from .item.access_review_instance_decision_item_item_request_builder import AccessReviewInstanceDecisionItemItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Decision param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItemCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AccessReviewInstanceDecisionItem, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AccessReviewInstanceDecisionItem, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> DecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 0280849cd42..ae2ea7bf9b6 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py index 60fc95efdeb..2cfe749aa83 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/access_review_instance_decision_item_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewInstanceDecisionItem, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewInstanceDecisionItem, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceDecisionItemItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceDecisionItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/count/count_request_builder.py index 7b1a556faf9..3277e61e9b5 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/insights_request_builder.py index 28075b01503..fe94140a9ea 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/insights_request_builder.py @@ -39,7 +39,6 @@ def by_governance_insight_id(self,governance_insight_id: str) -> GovernanceInsig param governance_insight_id: The unique identifier of governanceInsight Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if governance_insight_id is None: raise TypeError("governance_insight_id cannot be null.") from .item.governance_insight_item_request_builder import GovernanceInsightItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsightCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GovernanceInsight, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GovernanceInsight, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py index 52488df2ec2..3f5ca5710fe 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/item/insights/item/governance_insight_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Governan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GovernanceInsight, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GovernanceInsight, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GovernanceInsightItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GovernanceInsightItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py index 16689b368aa..61cebd7d42c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/decisions/record_all_decisions/record_all_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RecordAllDecisionsPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RecordAllDecisionsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RecordAllDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RecordAllDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RecordAllDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/definition/definition_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/definition/definition_request_builder.py index 5ee0b9a8ab4..521436d49e1 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/definition/definition_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/definition/definition_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Definiti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewScheduleDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> DefinitionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DefinitionRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DefinitionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/reset_decisions/reset_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/reset_decisions/reset_decisions_request_builder.py index 4d9b726d6c7..7c3fa564920 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/reset_decisions/reset_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/reset_decisions/reset_decisions_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> ResetDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ResetDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ResetDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/send_reminder/send_reminder_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/send_reminder/send_reminder_request_builder.py index 5fadfae80a0..a84d94f7470 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/send_reminder/send_reminder_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/send_reminder/send_reminder_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> SendReminderRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SendReminderRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SendReminderRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/count/count_request_builder.py index 38daac1b9ab..9e03a43084b 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 2802d931a33..7f27ca5b524 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py index 3b201e206d1..28ac54dead1 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/accept_recommendations/accept_recommendations_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-acceptrecommendations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> AcceptRecommendationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AcceptRecommendationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AcceptRecommendationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/access_review_stage_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/access_review_stage_item_request_builder.py index e4816c06568..19fad4c84a2 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/access_review_stage_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/access_review_stage_item_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: AccessReviewStage, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: AccessReviewStage, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> AccessReviewStageItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessReviewStageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewStageItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py index 3fb3a599a02..d382afee81c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/batch_record_decisions/batch_record_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BatchRecordDecisionsPostRequestBody, request_configura Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-batchrecorddecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: BatchRecordDecisionsPostRequestBody, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> BatchRecordDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BatchRecordDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BatchRecordDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/count/count_request_builder.py index 908212e4368..0772d2f077a 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/decisions_request_builder.py index 2594a8c38a5..6035d6354c8 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/decisions_request_builder.py @@ -41,7 +41,6 @@ def by_access_review_instance_decision_item_id(self,access_review_instance_decis param access_review_instance_decision_item_id: The unique identifier of accessReviewInstanceDecisionItem Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_instance_decision_item_id is None: raise TypeError("access_review_instance_decision_item_id cannot be null.") from .item.access_review_instance_decision_item_item_request_builder import AccessReviewInstanceDecisionItemItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Decision param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItemCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AccessReviewInstanceDecisionItem, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AccessReviewInstanceDecisionItem, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> DecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 3ead5601bee..de8521650ef 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py index 4b14f514618..79fc124b016 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/access_review_instance_decision_item_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessReviewInstanceDecisionItem, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewInstanceDecisionItem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessReviewInstanceDecisionItem, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessReviewInstanceDecisionItemItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessReviewInstanceDecisionItemItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessReviewInstanceDecisionItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py index be7878c40b4..5c78c38283f 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/insights_request_builder.py index 4d4d8568196..40c74e33e9b 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/insights_request_builder.py @@ -39,7 +39,6 @@ def by_governance_insight_id(self,governance_insight_id: str) -> GovernanceInsig param governance_insight_id: The unique identifier of governanceInsight Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if governance_insight_id is None: raise TypeError("governance_insight_id cannot be null.") from .item.governance_insight_item_request_builder import GovernanceInsightItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsightCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GovernanceInsight, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GovernanceInsight, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py index 0faa11d9b27..2868ae2b5ee 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/item/insights/item/governance_insight_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Governan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GovernanceInsight, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GovernanceInsight] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GovernanceInsight, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GovernanceInsightItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GovernanceInsightItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GovernanceInsightItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py index 7f00474014a..70b811f765a 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/decisions/record_all_decisions/record_all_decisions_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RecordAllDecisionsPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RecordAllDecisionsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RecordAllDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RecordAllDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RecordAllDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/stop/stop_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/stop/stop_request_builder.py index 09b5840d5e8..e570f59e3b3 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/stop/stop_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/item/stop/stop_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> StopRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/stages_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/stages_request_builder.py index 1216d2b2143..77f392c26ba 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/stages_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stages/stages_request_builder.py @@ -40,7 +40,6 @@ def by_access_review_stage_id(self,access_review_stage_id: str) -> AccessReviewS param access_review_stage_id: The unique identifier of accessReviewStage Returns: AccessReviewStageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_review_stage_id is None: raise TypeError("access_review_stage_id cannot be null.") from .item.access_review_stage_item_request_builder import AccessReviewStageItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -68,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[StagesRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStageCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -90,7 +87,6 @@ async def post(self,body: AccessReviewStage, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessReviewStage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: AccessReviewStage, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> StagesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StagesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StagesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stop/stop_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stop/stop_request_builder.py index 49130b77c78..0228b2ec68e 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stop/stop_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stop/stop_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> StopRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py index beb753eca4a..04ee141ca4c 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/instances/item/stop_apply_decisions/stop_apply_decisions_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> StopApplyDecisionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StopApplyDecisionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StopApplyDecisionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/access_reviews/unified/unified_request_builder.py b/msgraph_beta/generated/identity_governance/access_reviews/unified/unified_request_builder.py index f28053c0157..e3ad4bb0940 100644 --- a/msgraph_beta/generated/identity_governance/access_reviews/unified/unified_request_builder.py +++ b/msgraph_beta/generated/identity_governance/access_reviews/unified/unified_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UnifiedR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoot] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: UnifiedRoot, request_configuration: Optional[RequestC param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoot] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: UnifiedRoot, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> UnifiedRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UnifiedRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UnifiedRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_request_builder.py index 52c6556133b..b1642fa34be 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AppConse param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppConsentApprovalRoute] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AppConsentApprovalRoute, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppConsentApprovalRoute] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AppConsentApprovalRoute, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AppConsentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AppConsentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AppConsentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/app_consent_requests_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/app_consent_requests_request_builder.py index 1335023adb4..14a4849a503 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/app_consent_requests_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/app_consent_requests_request_builder.py @@ -40,7 +40,6 @@ def by_app_consent_request_id(self,app_consent_request_id: str) -> AppConsentReq param app_consent_request_id: The unique identifier of appConsentRequest Returns: AppConsentRequestItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if app_consent_request_id is None: raise TypeError("app_consent_request_id cannot be null.") from .item.app_consent_request_item_request_builder import AppConsentRequestItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AppConse Returns: Optional[AppConsentRequestCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/appconsentapprovalroute-list-appconsentrequests?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: AppConsentRequest, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppConsentRequest] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: AppConsentRequest, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AppConsentRequestsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AppConsentRequestsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AppConsentRequestsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/count/count_request_builder.py index 92fbb1a7642..9f324326015 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index c0841a93cef..cf39fdc6e14 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/appconsentrequest-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/app_consent_request_item_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/app_consent_request_item_request_builder.py index 9f78e696145..1741b701a7e 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/app_consent_request_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/app_consent_request_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AppConse Returns: Optional[AppConsentRequest] Find more info here: https://learn.microsoft.com/graph/api/appconsentrequest-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AppConsentRequest, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppConsentRequest] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AppConsentRequest, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AppConsentRequestItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AppConsentRequestItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AppConsentRequestItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/count/count_request_builder.py index f9553f6cce8..dab40dfaa7f 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 075d25e25d3..ae65dcbf382 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/userconsentrequest-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/approval_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/approval_request_builder.py index 7d3cf1fbd6d..a1f975daa94 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/approval_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/approval_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Approval] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: Approval, request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Approval] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: Approval, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> ApprovalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/count/count_request_builder.py index 776fe8044b4..bb0ea18e439 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/item/approval_step_item_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/item/approval_step_item_request_builder.py index c488efd41be..bd631641f44 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/item/approval_step_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/item/approval_step_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStep] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: ApprovalStep, request_configuration: Optional[Request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStep] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: ApprovalStep, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> ApprovalStepItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalStepItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalStepItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/steps_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/steps_request_builder.py index b79bcd7a8cb..f981a0dd6b6 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/steps_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/approval/steps/steps_request_builder.py @@ -39,7 +39,6 @@ def by_approval_step_id(self,approval_step_id: str) -> ApprovalStepItemRequestBu param approval_step_id: The unique identifier of approvalStep Returns: ApprovalStepItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if approval_step_id is None: raise TypeError("approval_step_id cannot be null.") from .item.approval_step_item_request_builder import ApprovalStepItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[StepsReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStepCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: ApprovalStep, request_configuration: Optional[RequestC param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStep] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: ApprovalStep, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> StepsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StepsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StepsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/user_consent_request_item_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/user_consent_request_item_request_builder.py index 693798cd44f..79f1336211a 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/user_consent_request_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/item/user_consent_request_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserCons Returns: Optional[UserConsentRequest] Find more info here: https://learn.microsoft.com/graph/api/userconsentrequest-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: UserConsentRequest, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserConsentRequest] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: UserConsentRequest, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> UserConsentRequestItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserConsentRequestItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserConsentRequestItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/user_consent_requests_request_builder.py b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/user_consent_requests_request_builder.py index a9d0ca77bf5..ea21e17dc27 100644 --- a/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/user_consent_requests_request_builder.py +++ b/msgraph_beta/generated/identity_governance/app_consent/app_consent_requests/item/user_consent_requests/user_consent_requests_request_builder.py @@ -40,7 +40,6 @@ def by_user_consent_request_id(self,user_consent_request_id: str) -> UserConsent param user_consent_request_id: The unique identifier of userConsentRequest Returns: UserConsentRequestItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if user_consent_request_id is None: raise TypeError("user_consent_request_id cannot be null.") from .item.user_consent_request_item_request_builder import UserConsentRequestItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserCons Returns: Optional[UserConsentRequestCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/appconsentrequest-list-userconsentrequests?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: UserConsentRequest, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserConsentRequest] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: UserConsentRequest, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> UserConsentRequestsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserConsentRequestsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserConsentRequestsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/access_package_assignment_approvals_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/access_package_assignment_approvals_request_builder.py index 6cc316e66ec..8d974e55f54 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/access_package_assignment_approvals_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/access_package_assignment_approvals_request_builder.py @@ -40,7 +40,6 @@ def by_approval_id(self,approval_id: str) -> ApprovalItemRequestBuilder: param approval_id: The unique identifier of approval Returns: ApprovalItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if approval_id is None: raise TypeError("approval_id cannot be null.") from .item.approval_item_request_builder import ApprovalItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -68,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -90,7 +87,6 @@ async def post(self,body: Approval, request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Approval] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: Approval, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentApprovalsRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentApprovalsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentApprovalsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/count/count_request_builder.py index b78241ffbfb..ebc966b49d4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index db3b1f2720b..c9be96f48d2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/approval_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/approval_item_request_builder.py index 9446ab1038a..cbb81fa335b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/approval_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/approval_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval Returns: Optional[Approval] Find more info here: https://learn.microsoft.com/graph/api/approval-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: Approval, request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Approval] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: Approval, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> ApprovalItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/count/count_request_builder.py index 173ef0af0da..1042b03f1d4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/item/approval_step_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/item/approval_step_item_request_builder.py index 74f2bbfb48a..3ac7ab1c346 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/item/approval_step_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/item/approval_step_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval Returns: Optional[ApprovalStep] Find more info here: https://learn.microsoft.com/graph/api/approvalstep-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: ApprovalStep, request_configuration: Optional[Request Returns: Optional[ApprovalStep] Find more info here: https://learn.microsoft.com/graph/api/approvalstep-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: ApprovalStep, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> ApprovalStepItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalStepItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalStepItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/steps_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/steps_request_builder.py index 7f6f88611ac..2dbcdb055d1 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/steps_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_approvals/item/steps/steps_request_builder.py @@ -39,7 +39,6 @@ def by_approval_step_id(self,approval_step_id: str) -> ApprovalStepItemRequestBu param approval_step_id: The unique identifier of approvalStep Returns: ApprovalStepItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if approval_step_id is None: raise TypeError("approval_step_id cannot be null.") from .item.approval_step_item_request_builder import ApprovalStepItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[StepsReq Returns: Optional[ApprovalStepCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/approval-list-steps?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: ApprovalStep, request_configuration: Optional[RequestC param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStep] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: ApprovalStep, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> StepsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StepsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StepsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/access_package_assignment_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/access_package_assignment_resource_roles_request_builder.py index f26eecacec1..6f4ec1d233c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/access_package_assignment_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/access_package_assignment_resource_roles_request_builder.py @@ -40,7 +40,6 @@ def by_access_package_assignment_resource_role_id(self,access_package_assignment param access_package_assignment_resource_role_id: The unique identifier of accessPackageAssignmentResourceRole Returns: AccessPackageAssignmentResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_assignment_resource_role_id is None: raise TypeError("access_package_assignment_resource_role_id cannot be null.") from .item.access_package_assignment_resource_role_item_request_builder import AccessPackageAssignmentResourceRoleItemRequestBuilder @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa Returns: Optional[AccessPackageAssignmentResourceRoleCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackageassignmentresourceroles?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: AccessPackageAssignmentResourceRole, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignmentResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: AccessPackageAssignmentResourceRole, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentResourceRolesRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/count/count_request_builder.py index 6d1eb34415c..0a18025292e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignment_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignment_resource_role_item_request_builder.py index 2770811b5d6..9c457c94845 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignment_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignment_resource_role_item_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa Returns: Optional[AccessPackageAssignmentResourceRole] Find more info here: https://learn.microsoft.com/graph/api/accesspackageassignmentresourcerole-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageAssignmentResourceRole, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignmentResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageAssignmentResourceRole, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentResourceRoleItemReques param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/access_package_assignments_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/access_package_assignments_request_builder.py index 4553603f8f2..c21cc66d38a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/access_package_assignments_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/access_package_assignments_request_builder.py @@ -38,7 +38,6 @@ def by_access_package_assignment_id(self,access_package_assignment_id: str) -> A param access_package_assignment_id: The unique identifier of accessPackageAssignment Returns: AccessPackageAssignmentItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_assignment_id is None: raise TypeError("access_package_assignment_id cannot be null.") from .item.access_package_assignment_item_request_builder import AccessPackageAssignmentItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignmentCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/count/count_request_builder.py index dd9eccbc576..fde1ca6f9dc 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/item/access_package_assignment_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/item/access_package_assignment_item_request_builder.py index d8aee2aff01..2de9f7f7c34 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/item/access_package_assignment_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_assignments/item/access_package_assignment_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 34912cf63b9..d58e3f5ea80 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py index 6a60828a07e..1566bae3190 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index eff53432c2c..20189757ee0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py index 66bf921d024..8ae73407617 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index 0fbf024caba..9d5c0c6b809 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index e13fbb1d4b1..259e82fd9bb 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index 3b82e85ea45..5900d3822d7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 358b34d9f11..28d3ee31712 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py index 5bc240d6534..c7b513a9015 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 15cb456dfa0..374c2569385 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py index 7ef4f52dcec..407a2037c94 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index da5422db93b..339edcea947 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 824c0caa8ef..b4fac089b6c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py index 3ed35f90d5c..a5d80dbfe93 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py index 3768572750d..d9940bf7601 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 7bda164b361..9f55da5ceed 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 8ee2838726a..b82f5eeaa21 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index ee6b42ef9e1..cf0f98e7812 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 3df18724e54..247521b1fed 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index b43cd75f55b..5f7a11fcfe8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 02d3d2c3e90..3f2972e1bb7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index df6b2625d4a..2d94c08ee39 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 6824aa0260c..6c5b20f018e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 0366cbd2387..7eb35c92634 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py index d571c1fbdf2..636cfa4d151 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py index 6e1123cd7d5..521c4ad0961 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 8a4f8491c0f..4d7b7bc5107 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 7cf22636b6c..5b2e131d882 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py index 73adab0425c..6f72955eb19 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index f3cafdd1bbe..c601d09e469 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 17284cbb727..73f9ed9e4eb 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 51f7ffbfa49..e3e358a2c3c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py index fe7f81ba270..0a937751537 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource_role_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource_role_request_builder.py index 64ab0e7909b..f1d31de70e3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource_role_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource_role_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 365c639cd0f..611976bd0b4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py index eaa85574c3e..606917298a8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 0cd20b35940..78688fdd771 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py index 0768669e612..10a00f3a63d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 51eae65cbbd..100c20329b9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py index 6875160e50f..030f78eebee 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index a21e16102f8..7fa8a03cf94 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index 3931b8a1298..efe0256ef38 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 542b7771b85..9013bbddbd0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 7906bc1558e..0a8c7fcbf02 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py index e4e65816522..f7f1c9c8b28 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py index b2ca3f2dc9b..5a8d513f578 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 70220914de3..1a2cec49099 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 572add27dae..d7799e98ded 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index 6b2c3edd5ed..ecf133918a7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 907755a31a0..b643ba7b6f6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 5e7742cf024..d1576f02bed 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 4eca10b0b81..23b8bffa109 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index f4d8d8a61b2..0be03ad59bf 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index d1c04c7bb9d..c4cbedde9a2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index a7c462776ed..1dec094a54d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index ea67da84172..567177c6918 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 387deac2feb..73becbe94d4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 2b975a7372b..51d3acd0ca8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py index 91a573f2ba7..8030138c5f2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py index 34d3f671b67..6803604a33b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 9a0a12330c3..cc4ac01d903 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 99b2b20d116..6d1b58eedf8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py index c0d59e101b7..f6bd4239859 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index ee1c55962f0..90ea5ebf16c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index b2c47de65a8..a48b3050240 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index deabbda2a73..38705132bfa 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 53f5098508a..cbabab50517 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource_scope_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource_scope_request_builder.py index 4e8fdda6924..6da154174fe 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource_scope_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource_scope_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_subject/access_package_subject_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_subject/access_package_subject_request_builder.py index 971ca394173..a3dc61e1c48 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_subject/access_package_subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_subject/access_package_subject_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSubject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageSubject, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSubject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageSubject, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageSubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageSubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageSubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_subject/connected_organization/connected_organization_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_subject/connected_organization/connected_organization_request_builder.py index 60f094c5676..be494189c73 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_subject/connected_organization/connected_organization_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/item/access_package_subject/connected_organization/connected_organization_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Connecte param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ConnectedOrganization] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ConnectedOrganizationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ConnectedOrganizationRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ConnectedOrganizationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/my/my_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/my/my_request_builder.py index 71fb31cf657..437aaa1678f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/my/my_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignment_resource_roles/my/my_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MyReques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MyGetResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> MyRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MyRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MyRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/access_package_assignments_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/access_package_assignments_request_builder.py index c757a8aa6f4..36e575bc1b1 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/access_package_assignments_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/access_package_assignments_request_builder.py @@ -43,7 +43,6 @@ def additional_access_with_access_package_id_with_incompatible_access_package_id param incompatible_access_package_id: Usage: incompatibleAccessPackageId='{incompatibleAccessPackageId}' Returns: AdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageIdRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_id is None: raise TypeError("access_package_id cannot be null.") if incompatible_access_package_id is None: @@ -58,7 +57,6 @@ def by_access_package_assignment_id(self,access_package_assignment_id: str) -> A param access_package_assignment_id: The unique identifier of accessPackageAssignment Returns: AccessPackageAssignmentItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_assignment_id is None: raise TypeError("access_package_assignment_id cannot be null.") from .item.access_package_assignment_item_request_builder import AccessPackageAssignmentItemRequestBuilder @@ -73,7 +71,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -87,7 +84,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa Returns: Optional[AccessPackageAssignmentCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackageassignments?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -109,7 +105,6 @@ async def post(self,body: AccessPackageAssignment, request_configuration: Option param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -132,7 +127,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -145,7 +139,6 @@ def to_post_request_information(self,body: AccessPackageAssignment, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -160,7 +153,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/additional_access/additional_access_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/additional_access/additional_access_request_builder.py index c586cdfdd4e..c800e1b1b43 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/additional_access/additional_access_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/additional_access/additional_access_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Addition Returns: Optional[AdditionalAccessGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackageassignment-additionalaccess?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> AdditionalAccessRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AdditionalAccessRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AdditionalAccessRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/additional_access_with_access_package_id_with_incompatible_access_package_id/additional_access_with_access_package_id_with_incompatible_access_package_id_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/additional_access_with_access_package_id_with_incompatible_access_package_id/additional_access_with_access_package_id_with_incompatible_access_package_id_request_builder.py index e2e9e434f94..fd90f3a3070 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/additional_access_with_access_package_id_with_incompatible_access_package_id/additional_access_with_access_package_id_with_incompatible_access_package_id_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/additional_access_with_access_package_id_with_incompatible_access_package_id/additional_access_with_access_package_id_with_incompatible_access_package_id_request_builder.py @@ -41,7 +41,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Addition param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageIdGetResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -62,7 +61,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -74,7 +72,6 @@ def with_url(self,raw_url: str) -> AdditionalAccessWithAccessPackageIdWithIncomp param raw_url: The raw URL to use for the request builder. Returns: AdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageIdRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AdditionalAccessWithAccessPackageIdWithIncompatibleAccessPackageIdRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/count/count_request_builder.py index 2558ccd94ba..044cdf986df 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 117667352ab..2b33c8ef85b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackageassignment-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_request_builder.py index 8716737580a..e8986db5f09 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_request_builder.py @@ -45,7 +45,6 @@ def access_packages_incompatible_with_with_unique_name(self,unique_name: str) -> param unique_name: Alternate key of accessPackage Returns: AccessPackagesIncompatibleWithWithUniqueNameRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if unique_name is None: raise TypeError("unique_name cannot be null.") from .access_packages_incompatible_with_with_unique_name.access_packages_incompatible_with_with_unique_name_request_builder import AccessPackagesIncompatibleWithWithUniqueNameRequestBuilder @@ -58,7 +57,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -99,7 +96,6 @@ async def patch(self,body: AccessPackage, request_configuration: Optional[Reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -122,7 +118,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -134,7 +129,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -147,7 +141,6 @@ def to_patch_request_information(self,body: AccessPackage, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -162,7 +155,6 @@ def with_url(self,raw_url: str) -> AccessPackageRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py index 8d6a602fc8b..b1d1532847a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_scope_id(self,access_package_resource_role_s param access_package_resource_role_scope_id: The unique identifier of accessPackageResourceRoleScope Returns: AccessPackageResourceRoleScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_scope_id is None: raise TypeError("access_package_resource_role_scope_id cannot be null.") from .item.access_package_resource_role_scope_item_request_builder import AccessPackageResourceRoleScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRoleScope, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRoleScope, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleScopesRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/count/count_request_builder.py index 7ceb360eb41..0812f6e6e16 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index b6c232e6d9a..9da8849c2a9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py index be2d8eabd85..d086e52feea 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 41f32018a27..e1aa5c56a5a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py index 4c92b740963..e45133d0a40 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index a0d82cacf3e..bc3c8b1f904 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index f5c98c0445a..a1144640716 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index 2b9c72cf5bf..33e815e5075 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 201dbf156e8..f6820c5bbf5 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py index 437a3c4df40..0f15589bbf3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 7915e613445..a5afffe827a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py index 8543f689b33..a370cc04726 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index d7f02d66756..36e7bdee4b7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index db2b628443a..b7f23114494 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py index 5994014442a..c21b2f3b52f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py index 51bf411c030..2ec9abb20d1 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index e4001499512..e109e14b2a4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 9adf92fa83d..d32e1ac923d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index 3ff749d76b7..01eade5b17c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 79f3ac67c2d..ee8ee1852aa 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index bd8173d9739..2d3eff2d4bf 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 2d44032a89f..102553d64a0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 3b495cd991d..ed08bd94f37 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 0b14b410944..174a0755b5b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 9b673e0b902..244c28d0f06 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py index cf25a990edd..1b590b7762d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py index 4e025ff2cda..3966bade20d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 94829dd4a53..91f0e8c2d12 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 12c2f4cf872..2e3ee8756b5 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py index 753a6657d85..05c370c9a19 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index e0091eda9db..d31ca56a197 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 8b51319f6aa..89641aa6344 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 658d3567995..af10998b3e4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py index db1e1a2cdb9..13b5f3ea162 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py index 072769a46ad..8903cc57fed 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py index d2b0410801c..47731c38911 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessPackageResourceRoleScope, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRoleScope, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleScopeItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 4aaf78026cc..109f4de7f51 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py index 789ed0b8484..0b9f585d2d7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index cde60fceca8..6fe905734b3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py index c43da598390..23426b04139 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index cda55c5ee6b..5dbd816f7a2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py index b8e64a817fa..00cbb9b382d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index 65299f9b0e5..16c3eb8f4ef 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index f9e9adfd462..9092015680c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 1da765babb4..da1346dde80 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 0a73b95a70b..d6e06044463 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py index 9389c226d1f..fb74514219a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py index 225c953567c..6a761dd51b3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 120a69ca51b..05cc86f047a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index f1ad6f408de..8c0d5cc5d9b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index 04feeb5e387..277516e5152 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index f498d21d2ef..53911dab393 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index c71a78cd11d..02034c714c7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index c20b48d1dc8..16b8685c003 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 0a4bd15d86e..a8f2c8fa579 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index 4c20720c838..0b39c179422 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index 293b78ad1fa..3a7d027d3c4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index 18411da8b83..e8110f3f696 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 6ed46fb9a06..d9b5bf6cbc3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 80100116313..c7da36c36ad 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py index c82fb835709..4ce34639464 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py index f3ea893725f..5e04d2dee6b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 2f7704b0541..43666e67b5c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index a755ecf288e..a6f9df87f8b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py index 563da3a2c57..784e1300538 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 0474d279f3d..ec7c43696e8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 62b81eddde9..dbddc978af3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 73e83bb9997..93d79f71807 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py index c3746878f2a..b0952f67ee2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py index 4beebcd3f0b..96470619297 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/access_packages_incompatible_with_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/access_packages_incompatible_with_request_builder.py index 55c65cd397c..a16c05f8fc6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/access_packages_incompatible_with_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/access_packages_incompatible_with_request_builder.py @@ -38,7 +38,6 @@ def by_access_package_id(self,access_package_id: str) -> AccessPackageItemReques param access_package_id: The unique identifier of accessPackage Returns: AccessPackageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_id is None: raise TypeError("access_package_id cannot be null.") from .item.access_package_item_request_builder import AccessPackageItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> AccessPackagesIncompatibleWithRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackagesIncompatibleWithRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackagesIncompatibleWithRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/count/count_request_builder.py index 4ae1492551f..c956ec87ab2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/item/access_package_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/item/access_package_item_request_builder.py index a26406f60f3..aaf6e05e8be 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/item/access_package_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with/item/access_package_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with_with_unique_name/access_packages_incompatible_with_with_unique_name_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with_with_unique_name/access_packages_incompatible_with_with_unique_name_request_builder.py index f002356574e..d535404dd45 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with_with_unique_name/access_packages_incompatible_with_with_unique_name_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/access_packages_incompatible_with_with_unique_name/access_packages_incompatible_with_with_unique_name_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> AccessPackagesIncompatibleWithWithUniqueNameR param raw_url: The raw URL to use for the request builder. Returns: AccessPackagesIncompatibleWithWithUniqueNameRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackagesIncompatibleWithWithUniqueNameRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py index 5e430b28e53..4e7858e447b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[GetApplicablePolicyRequirementsPostResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-getapplicablepolicyrequirements?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GetApplicablePolicyRequirementsRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: GetApplicablePolicyRequirementsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetApplicablePolicyRequirementsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/count/count_request_builder.py index 48f8c8131fe..940ee42aa90 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/incompatible_access_packages_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/incompatible_access_packages_request_builder.py index 1851e5539b5..4413cdd2f44 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/incompatible_access_packages_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/incompatible_access_packages_request_builder.py @@ -53,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Incompat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +84,6 @@ def with_url(self,raw_url: str) -> IncompatibleAccessPackagesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: IncompatibleAccessPackagesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return IncompatibleAccessPackagesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/item/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/item/ref/ref_request_builder.py index 14e3dcd24f7..03b7e88b34f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/item/ref/ref_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/ref/ref_request_builder.py index 612175972a7..70d47f3fdc6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_access_packages/ref/ref_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[StringCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment%2Did}/accessPackage/incompatibleAccessPackages/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -111,7 +107,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -124,7 +119,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -139,7 +133,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/count/count_request_builder.py index 397ccee3c24..c4ab6d5eb19 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/incompatible_groups_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/incompatible_groups_request_builder.py index c7bf24e1df3..b83f94fd972 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/incompatible_groups_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/incompatible_groups_request_builder.py @@ -53,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Incompat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GroupCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +84,6 @@ def with_url(self,raw_url: str) -> IncompatibleGroupsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: IncompatibleGroupsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return IncompatibleGroupsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/ref/ref_request_builder.py index 080d486ca58..09afe1bc7aa 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/ref/ref_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/service_provisioning_errors/count/count_request_builder.py index 14b72d466c1..d745ba97ac7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/service_provisioning_errors/service_provisioning_errors_request_builder.py index ed0232d2c43..334fb2cd0b9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/item/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/ref/ref_request_builder.py index 1bfeadb5daa..4a8ceeeb9c3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/incompatible_groups/ref/ref_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[StringCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment%2Did}/accessPackage/incompatibleGroups/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -111,7 +107,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -124,7 +119,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -139,7 +133,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/move_to_catalog/move_to_catalog_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/move_to_catalog/move_to_catalog_request_builder.py index 321b174bd72..890535f5a0c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/move_to_catalog/move_to_catalog_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package/move_to_catalog/move_to_catalog_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: MoveToCatalogPostRequestBody, request_configuration: O Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-movetocatalog?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: MoveToCatalogPostRequestBody, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MoveToCatalogRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MoveToCatalogRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MoveToCatalogRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_item_request_builder.py index 61ec492c2ae..e2c483708c0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_item_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageAssignment, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageAssignment, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/access_package_assignment_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/access_package_assignment_resource_roles_request_builder.py index 4db66ebfaa3..5196a0d0be8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/access_package_assignment_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/access_package_assignment_resource_roles_request_builder.py @@ -40,7 +40,6 @@ def by_access_package_assignment_resource_role_id(self,access_package_assignment param access_package_assignment_resource_role_id: The unique identifier of accessPackageAssignmentResourceRole Returns: AccessPackageAssignmentResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_assignment_resource_role_id is None: raise TypeError("access_package_assignment_resource_role_id cannot be null.") from .item.access_package_assignment_resource_role_item_request_builder import AccessPackageAssignmentResourceRoleItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignmentResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: AccessPackageAssignmentResourceRole, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignmentResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: AccessPackageAssignmentResourceRole, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentResourceRolesRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/count/count_request_builder.py index 5522aea3b15..fa82bc2df41 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignment_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignment_resource_role_item_request_builder.py index 0d700994499..716185c6810 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignment_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignment_resource_role_item_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignmentResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: AccessPackageAssignmentResourceRole, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignmentResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: AccessPackageAssignmentResourceRole, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentResourceRoleItemReques param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/access_package_assignments_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/access_package_assignments_request_builder.py index 089f7672a89..f318b6b3168 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/access_package_assignments_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/access_package_assignments_request_builder.py @@ -38,7 +38,6 @@ def by_access_package_assignment_id1(self,access_package_assignment_id1: str) -> param access_package_assignment_id1: The unique identifier of accessPackageAssignment Returns: AccessPackageAssignmentItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_assignment_id1 is None: raise TypeError("access_package_assignment_id1 cannot be null.") from .item.access_package_assignment_item_request_builder import AccessPackageAssignmentItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignmentCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/count/count_request_builder.py index 14e3ba9974b..cf9b6a3751d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/item/access_package_assignment_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/item/access_package_assignment_item_request_builder.py index 51872c91ede..730b96f3983 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/item/access_package_assignment_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_assignments/item/access_package_assignment_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageAssignment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageAssignmentItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageAssignmentItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageAssignmentItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index a8878fb3733..628c7e5f55f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py index a21c777c2c8..52129be9716 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 12bb8aebbde..ad04a102fdd 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py index 4962aff4784..60e685698e9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index 1ea817b491f..8d18915029b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index 49cc2c24893..eb41d6bb200 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index 192d078fbef..891fc78a38d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 38abceca6e5..d918c487d21 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py index 1c9781c4818..376c37ddecf 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 282db064aec..caa265a78e2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py index ef6b0559228..05345219787 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index e7dd5bbe83a..2cd6cca79fd 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index efcc7cc3c99..83c37642119 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py index 77d7a54f646..e81e1cb3745 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py index 07200d0d275..f9f9aaf5b64 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 4e02bdd6e59..9993fb20094 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index ae27976ec91..0e119a89f81 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index 2ae403108cb..5e8a4fba9b5 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index ec03a05f3e2..ce80105577f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 20fe5044cae..f286d6b01e2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 9887f39ab74..b19873be3f1 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index e3a76dfddee..61d03ecf3f7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 9978587d4d4..7da561bf7cc 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 4d487d0b390..de06cb465ec 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py index 8ddf8db42f1..983ed09cc20 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py index ed40eee9a53..e354fa3ca84 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 8ae7508caca..1161bf6c3d3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 8543a42002e..9d91f5d6d2c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py index 4224b80ba41..24563a6528d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 64e501f2e8f..569e37d3c05 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 310cf2dd19c..7c22192e6d9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 5b266a95dba..ee69e3d992d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py index e5549bbbbf7..e623d262c25 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource_role_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource_role_request_builder.py index ca4f0053cb5..76cbd5f2976 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource_role_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_role/access_package_resource_role_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 246933a0e00..6cef809a0d3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py index a1e25b4f27b..5ed2c3efb43 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index e9e3fc5dcd6..0568e02c270 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py index 18a0a9f4cde..b897766409b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index bf66ac8e4d9..14c38d499fe 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py index 34ae9207908..9675cda8da3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index b199b415696..b08c287aac4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index 4e49d037b0d..a1a99973b1e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index a296215071a..48494fc27fc 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 3f9a90ba69e..7ab9c1bb91b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py index 5027adf3590..6d47fd24555 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py index 9b293a73e06..9ce0973789a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index e7e616ee578..46c16e8f5b8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index aae31c60c4c..df7167633f2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index 14604254d93..b18f2ea2b4b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 6eb46fa3583..bf72f9aacaa 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index fa26bed769a..5db77e650e6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index c1c6e987bb2..bc11fc2b1d0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index fe5032141f0..602877090fb 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index cafa3790bf7..53f615de955 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index b0dc7cb8433..f4bb5304f80 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index b676ba62964..bfc55d207df 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index aba63f79847..f1a685d0401 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 5b8432027ef..e5d0d0c0a18 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py index 48d81773510..5ed3a12dde0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py index 7ea90693edb..7dd2b58e6c2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 4e52e1d7c8d..69a9dbb20cb 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index dbd3f6ee49e..3f39e862ea8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py index 8fdda766a9b..8bacdeca4c4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index bccb56022c2..11a6993fdc5 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 741179dd91e..f4d91263d6e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index b655a2631fa..a8350ed6656 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 4dfcfb98fce..cfbe0bed674 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource_scope_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource_scope_request_builder.py index ae3a556e65d..2f97cb465fc 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource_scope_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_resource_scope/access_package_resource_scope_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_subject/access_package_subject_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_subject/access_package_subject_request_builder.py index 91c71ab920e..7304f0d198f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_subject/access_package_subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_subject/access_package_subject_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSubject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageSubject, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSubject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageSubject, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageSubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageSubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageSubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_subject/connected_organization/connected_organization_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_subject/connected_organization/connected_organization_request_builder.py index 782f0366426..b7149d59610 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_subject/connected_organization/connected_organization_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/item/access_package_subject/connected_organization/connected_organization_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Connecte param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ConnectedOrganization] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ConnectedOrganizationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ConnectedOrganizationRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ConnectedOrganizationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/my/my_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/my/my_request_builder.py index 8e6ad85aa10..d44f5fb5825 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/my/my_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/access_package_assignment_resource_roles/my/my_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MyReques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MyGetResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> MyRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MyRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MyRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/reprocess/reprocess_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/reprocess/reprocess_request_builder.py index 963a44defac..3afdadac0c9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/reprocess/reprocess_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_assignments/item/reprocess/reprocess_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> ReprocessRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/access_package_resource_environments_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/access_package_resource_environments_request_builder.py index b05fdcd4674..5dc2d0360e5 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/access_package_resource_environments_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/access_package_resource_environments_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_environment_id(self,access_package_resource_envir param access_package_resource_environment_id: The unique identifier of accessPackageResourceEnvironment Returns: AccessPackageResourceEnvironmentItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_environment_id is None: raise TypeError("access_package_resource_environment_id cannot be null.") from .item.access_package_resource_environment_item_request_builder import AccessPackageResourceEnvironmentItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa Returns: Optional[AccessPackageResourceEnvironmentCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackageresourceenvironment?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: AccessPackageResourceEnvironment, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: AccessPackageResourceEnvironment, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentsRequestBuild param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/count/count_request_builder.py index 79fa96f7396..b2049870880 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resource_environment_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resource_environment_item_request_builder.py index b6349b9b8ee..e372396df9c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resource_environment_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resource_environment_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa Returns: Optional[AccessPackageResourceEnvironment] Find more info here: https://learn.microsoft.com/graph/api/accesspackageresourceenvironment-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessPackageResourceEnvironment, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessPackageResourceEnvironment, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/access_package_resources_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/access_package_resources_request_builder.py index 361d99265fa..4c434c6f43d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/access_package_resources_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/access_package_resources_request_builder.py @@ -38,7 +38,6 @@ def by_access_package_resource_id(self,access_package_resource_id: str) -> Acces param access_package_resource_id: The unique identifier of accessPackageResource Returns: AccessPackageResourceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_id is None: raise TypeError("access_package_resource_id cannot be null.") from .item.access_package_resource_item_request_builder import AccessPackageResourceItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourcesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourcesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourcesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/count/count_request_builder.py index ba56f2e4eb3..7f9ca5df777 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/item/access_package_resource_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/item/access_package_resource_item_request_builder.py index dc807294178..9fbd07ec73e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/item/access_package_resource_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_environments/item/access_package_resources/item/access_package_resource_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/access_package_resource_requests_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/access_package_resource_requests_request_builder.py index fc3fce0608d..1d10df0a658 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/access_package_resource_requests_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/access_package_resource_requests_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_request_id(self,access_package_resource_request_i param access_package_resource_request_id: The unique identifier of accessPackageResourceRequest Returns: AccessPackageResourceRequestItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_request_id is None: raise TypeError("access_package_resource_request_id cannot be null.") from .item.access_package_resource_request_item_request_builder import AccessPackageResourceRequestItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa Returns: Optional[AccessPackageResourceRequestCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackageresourcerequests?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: AccessPackageResourceRequest, request_configuration: O Returns: Optional[AccessPackageResourceRequest] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-post-accesspackageresourcerequests?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: AccessPackageResourceRequest, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/count/count_request_builder.py index b328b688714..ad40ad6b716 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/access_package_resource/access_package_resource_request_builder.py index 83fa3e05aa9..7029398899d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/access_package_resource/access_package_resource_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/access_package_resource_request_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/access_package_resource_request_item_request_builder.py index d841d967595..f6fea805c77 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/access_package_resource_request_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/access_package_resource_request_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRequest] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessPackageResourceRequest, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRequest] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRequest, reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestItemRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/requestor/connected_organization/connected_organization_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/requestor/connected_organization/connected_organization_request_builder.py index cec247b6266..c3d1cacd5ba 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/requestor/connected_organization/connected_organization_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/requestor/connected_organization/connected_organization_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Connecte param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ConnectedOrganization] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ConnectedOrganizationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ConnectedOrganizationRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ConnectedOrganizationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/requestor/requestor_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/requestor/requestor_request_builder.py index 050f518364c..fe19c38e2d0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/requestor/requestor_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_requests/item/requestor/requestor_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Requesto param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSubject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageSubject, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSubject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageSubject, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> RequestorRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RequestorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RequestorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py index 28c16d179b6..bc518d0f3b7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_scope_id(self,access_package_resource_role_s param access_package_resource_role_scope_id: The unique identifier of accessPackageResourceRoleScope Returns: AccessPackageResourceRoleScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_scope_id is None: raise TypeError("access_package_resource_role_scope_id cannot be null.") from .item.access_package_resource_role_scope_item_request_builder import AccessPackageResourceRoleScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRoleScope, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRoleScope, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleScopesRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/count/count_request_builder.py index 308e261f995..4d8d8bb76a2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index efdd3c44beb..20690dec807 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py index 646ca91efc9..22789f42382 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index bcd714cc233..35a3ed57046 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py index f1819f4334c..39fb18163bd 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index 4540eaa1add..cdd6228402d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index 14198e2f66a..5c2884632f7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index eca4fb168a5..d7223355f6f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index fa9ac72a41a..ed4eb116680 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py index b5908d3d83d..804a565f47a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 5b6740761f9..8b694effcf7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py index 79e0fe486de..e4919bec50b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index 05d2fdda021..6b6fc8209ed 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 84a6c273c51..0302992c99e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py index 7ef4fc8b538..9aa144124d8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py index 97dfa58dfed..01c24a78146 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 09d474ab81e..e2704c3b1c7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 1a9d18c1502..8fbf544a565 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index bf422f3b84f..b71808f4e10 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 1b053262aeb..933c15de861 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 4dac70b2bd6..b9ddb4b2262 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 71f99bd732e..87667a813b0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index eeb8fadac5d..635de1fa679 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 2eca0199c1d..ac0149953b0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 6e80a89da11..0bc6eb25401 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py index 35b10eb684d..c4ad690eb82 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py index cbaaed7fd3b..e95acbd5a78 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index aa65f18b7fe..11cf452a31a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index df311afb58b..7f0df7c412c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py index 430b2772d49..8e32d54b8dd 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index bea9c6364e0..c90baeab6a0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 6e5827252c6..24a5ada7808 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index b77f8969eee..1d2360ca1d8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py index d58f0b2b109..612fa1acb8b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py index 1b8a1d7015b..f5d0a4dfa72 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py index ea4d94fef1d..01a038f80d8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessPackageResourceRoleScope, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRoleScope, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleScopeItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 4aede9c8b84..50de5d589a9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py index 24849056201..f50ff20952a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 0f30a02cfd3..c5d240a62d4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py index ac2f60d49aa..05a063c805a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 7e2a16a5fa3..1bc98f9549b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py index 8f07c6cf3f7..6885e66663d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index eb991635758..ad11069cc76 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index fd1a747372d..06e11c6a5b9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index be0a20f2a8d..e07e4551017 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index b978926cc65..72bc09b9bd2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py index 1ea72fbf1c2..559e8c5539b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py index f9f45d6a480..a275a658e31 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index ff214f20ff0..5ec945cb845 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 75899748258..921fda7cacd 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index 859dd6d59a2..37a74bc45bd 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 1d500137860..ffcce7988c7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 05b292d23c6..55856847d87 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index e3852f3f41b..dd8255a8a3f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 0b604251cc5..4dfeecd62f9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index cd7710bdf56..ef4aef49c2f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index 172cd4756a2..4f638b18ca7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index 56984245d6d..d85ccc8fc2c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 32fbd784dfa..63e3fd54ed0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 2676cbf9cdc..e418a0636f9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py index 80494142639..429036c888c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py index 71c488dd073..69da9ca4c5a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index c0a231519f7..d24f532d74f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 98729ac9831..8643127aa8c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py index e5cbafc06c9..f69f3b69444 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index b278f785205..c7f08c660bd 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 4998d4e3f4f..608f197d29f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index bcf492c78b0..82683a8e1c2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py index d816ff9865f..20abb56a7d2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py index e584e5e9d5e..27f68736fe0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/access_package_resources_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/access_package_resources_request_builder.py index 01d56566cc8..229187e8d8c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/access_package_resources_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/access_package_resources_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_id(self,access_package_resource_id: str) -> Acces param access_package_resource_id: The unique identifier of accessPackageResource Returns: AccessPackageResourceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_id is None: raise TypeError("access_package_resource_id cannot be null.") from .item.access_package_resource_item_request_builder import AccessPackageResourceItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResource, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResource, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourcesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourcesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourcesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/count/count_request_builder.py index 9314be74ce1..b4e8a836a1c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_environment/access_package_resource_environment_request_builder.py index 1f9b3227dc2..78551a3233d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_item_request_builder.py index 84879d0dc3f..61fd2ea4c84 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_item_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/access_package_resource_roles_request_builder.py index aa9a7a41538..4ead892de00 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/count/count_request_builder.py index 58e0c7cc334..113f00efdc9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index beece9731fd..906e98415c8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py index 56a8713d5d7..1bb657dc997 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index 75e839c0508..f1020a09e21 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index 62f99c25e43..112f0141f5a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 4c75773c3ed..65c5597eb83 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py index 4c39c33c467..494e35b4659 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 47f4d3c5331..0e27aaab498 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py index 4a9557e5363..883a801cf5a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py index f0fe4d2ab33..d07aa6eae2a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index a1a5499d832..1b8b9f31f79 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index e30d23a81c1..799b5f8e0a3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index b29a0803036..8cf33cb171c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index a3db0f22f8c..281b6c838cc 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 3d0b10cee91..7f63ad5ae84 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 19a133100d8..4ba844d3cd4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 7507fbcdcf8..e817a4dcfdd 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 8cc26c722d0..a89f340f9bb 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 925e67c81bd..6aab7cc60ca 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py index b4287bcb3d2..b120fd2ae8f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py index 4b49ef3a712..cc3e76a7b6a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index fa21328ff18..fbd4b10b6fc 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 598a94dda74..6d935583531 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index cb2f7f31829..cf7ef93b8aa 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 9f7a0bdac77..500ce13336f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index ac76554f6a4..0dd7f544112 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 2113ddc4301..0ff4edd76b2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index a7c15077520..bbdaf79ea1e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index 3fc1f87c763..5bab74d655c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index dba81940487..fa9ff21bdbe 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/count/count_request_builder.py index de4eba8b21e..16e6b6c055d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index de78a337422..ee1d544f219 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py index a1fb4592683..84a6b10e977 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 5c47122e3d3..69bf0852487 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py index 79013b16e77..c6725eebd37 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index 88f628b3e5a..1e8eb446a74 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py index fdd848616c4..4ba31795de0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index acd78e5137a..39e2635437e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py index 1e179d108ac..10da39803e9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py index 1a0686e8e2b..8c7e9231098 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 0c8df2c2ebe..8607397b8ae 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index e40b59889fc..abf6745a5c7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index 4f5cd9a5103..87a679c2b05 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index ff3adebfa70..a95f56d53f8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 0a9790b8ffd..2b258868b3a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 715cce5616e..88ba95e5fbe 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index ed4eefc404f..086868bc20f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index 47b887a9230..0ef15bd8c49 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 9458656eaaa..a05e742dcb8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py index af6de185568..55732b64c01 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py index 2f8c1c35087..1535ac3a6f6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 5fb033facdb..e21095c745b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index a3756bdf88b..2513731583e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index 0f4b6acc2d0..3c355c0b84a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 80d1c3da36d..519f558d542 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 29bc0f07277..f514ef04fdb 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 8b14c626490..81f4bf4c86d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 323374a30b5..9d317a526a3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index c46193b7d1a..4fa26123b1d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 6327eb86720..2efd54c2fa4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/refresh/refresh_request_builder.py index 9e54fa2413f..b514e7ea923 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/count/count_request_builder.py index 778bbec0383..c03fd09871b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 0026508ab57..9930d8e20b3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/count/count_request_builder.py index 1c8aa2cfa66..425dd027fa9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/files_request_builder.py index dc27e227ca1..9bc4c7c89a5 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index b20d7e84cff..029550bc74e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/item/value/content_request_builder.py index 48fbb01490a..51607804a59 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/upload_file/upload_file_request_builder.py index 806455cabee..2967c1465e6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/upload_sessions_request_builder.py index 27578938e2e..a5037a249ef 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_resources/item/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/access_package_suggestions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/access_package_suggestions_request_builder.py index cdfd4c62738..b5ea05d2734 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/access_package_suggestions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/access_package_suggestions_request_builder.py @@ -40,7 +40,6 @@ def by_access_package_suggestion_id(self,access_package_suggestion_id: str) -> A param access_package_suggestion_id: The unique identifier of accessPackageSuggestion Returns: AccessPackageSuggestionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_suggestion_id is None: raise TypeError("access_package_suggestion_id cannot be null.") from .item.access_package_suggestion_item_request_builder import AccessPackageSuggestionItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -68,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSuggestionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -90,7 +87,6 @@ async def post(self,body: AccessPackageSuggestion, request_configuration: Option param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSuggestion] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: AccessPackageSuggestion, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageSuggestionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageSuggestionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageSuggestionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/count/count_request_builder.py index d1301e287ce..740ba24099c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 56a0bb501a1..118003ea6e2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackagesuggestions-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/item/access_package/access_package_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/item/access_package/access_package_request_builder.py index 6784f5848a1..73da87bd214 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/item/access_package/access_package_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/item/access_package/access_package_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AvailableAccessPackage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/item/access_package_suggestion_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/item/access_package_suggestion_item_request_builder.py index 384f597d4dc..e8ecfd2917e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/item/access_package_suggestion_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_package_suggestions/item/access_package_suggestion_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSuggestion] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageSuggestion, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSuggestion] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageSuggestion, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageSuggestionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageSuggestionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageSuggestionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/access_packages_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/access_packages_request_builder.py index 03140cf05f8..7ff1446d2f4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/access_packages_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/access_packages_request_builder.py @@ -41,7 +41,6 @@ def by_access_package_id(self,access_package_id: str) -> AccessPackageItemReques param access_package_id: The unique identifier of accessPackage Returns: AccessPackageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_id is None: raise TypeError("access_package_id cannot be null.") from .item.access_package_item_request_builder import AccessPackageItemRequestBuilder @@ -56,7 +55,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -70,7 +68,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa Returns: Optional[AccessPackageCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackages?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -93,7 +90,6 @@ async def post(self,body: AccessPackage, request_configuration: Optional[Request Returns: Optional[AccessPackage] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-post-accesspackages?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_post_request_information(self,body: AccessPackage, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> AccessPackagesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackagesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackagesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/count/count_request_builder.py index 4716f78a4b8..8760033c965 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 8f39bfc5f44..535a0497b4c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_item_request_builder.py index 41e2968f186..77fd9ddf1e9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_item_request_builder.py @@ -45,7 +45,6 @@ def access_packages_incompatible_with_with_unique_name(self,unique_name: str) -> param unique_name: Alternate key of accessPackage Returns: AccessPackagesIncompatibleWithWithUniqueNameRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if unique_name is None: raise TypeError("unique_name cannot be null.") from .access_packages_incompatible_with_with_unique_name.access_packages_incompatible_with_with_unique_name_request_builder import AccessPackagesIncompatibleWithWithUniqueNameRequestBuilder @@ -59,7 +58,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-delete?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa Returns: Optional[AccessPackage] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -102,7 +99,6 @@ async def patch(self,body: AccessPackage, request_configuration: Optional[Reques Returns: Optional[AccessPackage] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -125,7 +121,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -137,7 +132,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -150,7 +144,6 @@ def to_patch_request_information(self,body: AccessPackage, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -165,7 +158,6 @@ def with_url(self,raw_url: str) -> AccessPackageItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py index 7d40b134bdc..5b88100c53a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/access_package_resource_role_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_scope_id(self,access_package_resource_role_s param access_package_resource_role_scope_id: The unique identifier of accessPackageResourceRoleScope Returns: AccessPackageResourceRoleScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_scope_id is None: raise TypeError("access_package_resource_role_scope_id cannot be null.") from .item.access_package_resource_role_scope_item_request_builder import AccessPackageResourceRoleScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: AccessPackageResourceRoleScope, request_configuration: Returns: Optional[AccessPackageResourceRoleScope] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-post-accesspackageresourcerolescopes?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: AccessPackageResourceRoleScope, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleScopesRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/count/count_request_builder.py index 37d4170c356..0bd0f1fee48 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index b51b08ffa81..56655953d6c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py index ca3e90e32bd..12931210f3b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 6de68ae62b3..cfbaa489d09 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py index c3ba4ad235e..b272982016f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index 5cfd1af472b..bd11b185147 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index 3da8650e6cb..20508fbd8b3 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index 3eb0281b93d..15d258de01e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index b22975c5da7..3fb6e624061 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py index 2b1cda790d4..8010d2c42d5 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index 4f32f9352a6..bdc69d947d7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py index bf169397644..9cf94aabb49 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index 153632d106c..471bab0c3ac 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index f62a8429399..04b5fe20c89 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py index dbbbf38ea14..5dcdf24a844 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py index aadb4a6cbd8..a70b5268058 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index ce7de501244..1db6a320cbe 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 12c0346da7e..d20715fb91b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index bbcb834add9..53ae2b0a4f4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 5c6701beb22..b3c1bdd84ec 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 5652ac5282e..e0eb85990b4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 19a6d250e20..88ef30d45e6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 097c4f2fd58..c9c7ef3fcfa 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index f82e2e86a6d..10c366067d4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 98856c19d3b..a7116a7b426 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py index 4908da9194c..d647b7e148a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py index ee1e0b951b1..01f6f457044 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index e52edda62e9..3dbed53b40d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 7522976cc72..1ebd6c6a935 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py index 9b8312d9988..31fb08b9e80 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 7620c75c536..fb3bba877aa 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index 9d6f75720a0..15c21fb608b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index 499b859ffe9..3691b17cbf2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 686f6f1033c..8c3bd66b3dd 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py index a999627fa98..82c609454da 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role/access_package_resource_role_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py index fa2a5398eee..d3068b569b0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessPackageResourceRoleScope, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRoleScope, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleScopeItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index a8d6216e4d9..a1fa581983a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py index 0ea7bb24536..14819ee556b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py index a66619a84a1..52a0c320f6a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/access_package_resource_roles_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_role_id(self,access_package_resource_role_id: str param access_package_resource_role_id: The unique identifier of accessPackageResourceRole Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_id is None: raise TypeError("access_package_resource_role_id cannot be null.") from .item.access_package_resource_role_item_request_builder import AccessPackageResourceRoleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceRole, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceRole, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRolesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRolesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRolesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py index b661e2e17c3..79e3d1764a6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py index c6b0c21fa5e..a36f7925ed7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_environment/access_package_resource_environment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceEnvironment] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceEnvironmentRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceEnvironmentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceEnvironmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py index b579527810d..2d252c1cfb9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: AccessPackageResource, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: AccessPackageResource, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index 796b8650f4b..41f8205d68f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index 573dbe833f8..fdfd38da120 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 52453e68996..62ba98c3eb8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index d5d6cca03d0..94edc7fa8b7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py index 1dde7474e51..4ee45c3162b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py index 74c09edd5cd..08a912b4c1f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index 699b45435a4..904a3e2b27f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 280c5f3fc13..a7ba8939398 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py index 3159dc9080a..f7b73dd4681 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 4a33504107a..84aa6f7cea2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index b257b86c778..5875b9137a1 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index baa90030f4f..653597cdcb1 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 1692330f6a1..8d978ec2833 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py index 9236cc9b082..56858a6ba89 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_roles/item/access_package_resource_role_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceRole, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRole] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceRole, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py index f2d5b1e9f31..831acac719d 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/access_package_resource_scopes_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_resource_scope_id(self,access_package_resource_scope_id: s param access_package_resource_scope_id: The unique identifier of accessPackageResourceScope Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_scope_id is None: raise TypeError("access_package_resource_scope_id cannot be null.") from .item.access_package_resource_scope_item_request_builder import AccessPackageResourceScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScopeCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AccessPackageResourceScope, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AccessPackageResourceScope, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py index b96f76644ad..8810e84584a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py index 2b10aee4c23..bd3b283ec64 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/access_package_resource_scopes/item/access_package_resource_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py index 15b39072a68..aa2672b2f39 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/external_origin_resource_connector/external_origin_resource_connector_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py index 2959ea33d36..5fe8765d678 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/refresh/refresh_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackageresource-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py index 720d2e7968c..637bc28fc45 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py index c43c91623f1..3e5036fab18 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/custom_data_provided_resource_upload_session_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: CustomDataProvidedResourceUploadSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: CustomDataProvidedResourceUploadSess param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceUploadSessionItemRe param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceUploadSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py index 200c8ab5a2c..8db31a8a4f2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py index 9bd08f91d75..4cfb48ed8bd 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/files_request_builder.py @@ -38,7 +38,6 @@ def by_custom_data_provided_resource_file_id(self,custom_data_provided_resource_ param custom_data_provided_resource_file_id: The unique identifier of customDataProvidedResourceFile Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_file_id is None: raise TypeError("custom_data_provided_resource_file_id cannot be null.") from .item.custom_data_provided_resource_file_item_request_builder import CustomDataProvidedResourceFileItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFileCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py index 7b20ad84983..929903a5089 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/custom_data_provided_resource_file_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomDa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CustomDataProvidedResourceFileItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: CustomDataProvidedResourceFileItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomDataProvidedResourceFileItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py index a358cfe0b8b..269627b389f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/files/item/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py index acc150d79c5..16fcfdf8857 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/item/upload_file/upload_file_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CustomDataProvidedResourceUploadSession] Find more info here: https://learn.microsoft.com/graph/api/customdataprovidedresourceuploadsession-uploadfile?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> UploadFileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadFileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadFileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py index 85e64f28dc0..dd119c9d362 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource/upload_sessions/upload_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_data_provided_resource_upload_session_id(self,custom_data_provided param custom_data_provided_resource_upload_session_id: The unique identifier of customDataProvidedResourceUploadSession Returns: CustomDataProvidedResourceUploadSessionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_data_provided_resource_upload_session_id is None: raise TypeError("custom_data_provided_resource_upload_session_id cannot be null.") from .item.custom_data_provided_resource_upload_session_item_request_builder import CustomDataProvidedResourceUploadSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UploadSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSessionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: CustomDataProvidedResourceUploadSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CustomDataProvidedResourceUploadSession] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: CustomDataProvidedResourceUploadSessi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> UploadSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UploadSessionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UploadSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py index 718a129b4bf..0a7dd29e846 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_package_resource_role_scopes/item/access_package_resource_scope/access_package_resource_scope_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AccessPackageResourceScope, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AccessPackageResourceScope, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceScopeRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceScopeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceScopeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/access_packages_incompatible_with_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/access_packages_incompatible_with_request_builder.py index 073879961ba..bb1a93e3bfe 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/access_packages_incompatible_with_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/access_packages_incompatible_with_request_builder.py @@ -38,7 +38,6 @@ def by_access_package_id1(self,access_package_id1: str) -> AccessPackageItemRequ param access_package_id1: The unique identifier of accessPackage Returns: AccessPackageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_id1 is None: raise TypeError("access_package_id1 cannot be null.") from .item.access_package_item_request_builder import AccessPackageItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa Returns: Optional[AccessPackageCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-list-accesspackagesincompatiblewith?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> AccessPackagesIncompatibleWithRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackagesIncompatibleWithRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackagesIncompatibleWithRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/count/count_request_builder.py index 106088bd6cb..e1350c788de 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/item/access_package_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/item/access_package_item_request_builder.py index cb8e7e60749..10dfe1e4ce7 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/item/access_package_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with/item/access_package_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with_with_unique_name/access_packages_incompatible_with_with_unique_name_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with_with_unique_name/access_packages_incompatible_with_with_unique_name_request_builder.py index f7e5a199b8b..2f79dafe0e8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with_with_unique_name/access_packages_incompatible_with_with_unique_name_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/access_packages_incompatible_with_with_unique_name/access_packages_incompatible_with_with_unique_name_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> AccessPackagesIncompatibleWithWithUniqueNameR param raw_url: The raw URL to use for the request builder. Returns: AccessPackagesIncompatibleWithWithUniqueNameRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackagesIncompatibleWithWithUniqueNameRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py index 5bd4d05fa22..b953ae41e00 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[GetApplicablePolicyRequirementsPostResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-getapplicablepolicyrequirements?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GetApplicablePolicyRequirementsRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: GetApplicablePolicyRequirementsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetApplicablePolicyRequirementsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/count/count_request_builder.py index 7488a6e40db..84e54c06b6f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/incompatible_access_packages_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/incompatible_access_packages_request_builder.py index de58d0275b6..76fdc3c9d7e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/incompatible_access_packages_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/incompatible_access_packages_request_builder.py @@ -54,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Incompat Returns: Optional[AccessPackageCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-list-incompatibleaccesspackages?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +74,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +85,6 @@ def with_url(self,raw_url: str) -> IncompatibleAccessPackagesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: IncompatibleAccessPackagesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return IncompatibleAccessPackagesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/item/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/item/ref/ref_request_builder.py index 52d5043cf5d..6c09d956201 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/item/ref/ref_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-delete-incompatibleaccesspackage?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/ref/ref_request_builder.py index 1b3c9b873cd..ae651401281 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_access_packages/ref/ref_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-delete-incompatibleaccesspackage?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque Returns: Optional[StringCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-list-incompatibleaccesspackages?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-post-incompatibleaccesspackage?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/incompatibleAccessPackages/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/count/count_request_builder.py index 66ad2556b85..5a0d9da94e8 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/incompatible_groups_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/incompatible_groups_request_builder.py index 7ccb4d1a556..ee1da020d1e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/incompatible_groups_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/incompatible_groups_request_builder.py @@ -54,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Incompat Returns: Optional[GroupCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-list-incompatiblegroups?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +74,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +85,6 @@ def with_url(self,raw_url: str) -> IncompatibleGroupsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: IncompatibleGroupsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return IncompatibleGroupsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/ref/ref_request_builder.py index 0feca83788b..55bb435b1d9 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/ref/ref_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-delete-incompatiblegroup?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/service_provisioning_errors/count/count_request_builder.py index 784beaee3b5..9976187fa7c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/service_provisioning_errors/service_provisioning_errors_request_builder.py index 7b2999972cb..832ad5fc42f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/item/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/ref/ref_request_builder.py index 3cb4ef1ddd5..f346fa0412a 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/incompatible_groups/ref/ref_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-delete-incompatiblegroup?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque Returns: Optional[StringCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-list-incompatiblegroups?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-post-incompatiblegroup?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/incompatibleGroups/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/move_to_catalog/move_to_catalog_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/move_to_catalog/move_to_catalog_request_builder.py index 53d885170ad..e5ee35be8e5 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/move_to_catalog/move_to_catalog_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/item/move_to_catalog/move_to_catalog_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: MoveToCatalogPostRequestBody, request_configuration: O Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-movetocatalog?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: MoveToCatalogPostRequestBody, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MoveToCatalogRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MoveToCatalogRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MoveToCatalogRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/search/search_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/search/search_request_builder.py index f052825e72f..b9dc9583968 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/search/search_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages/search/search_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SearchRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SearchGetResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> SearchRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SearchRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SearchRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/access_packages_with_unique_name_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/access_packages_with_unique_name_request_builder.py index 957a1c4d473..870ae695cfb 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/access_packages_with_unique_name_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/access_packages_with_unique_name_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-delete?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -62,7 +61,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa Returns: Optional[AccessPackage] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -85,7 +83,6 @@ async def patch(self,body: AccessPackage, request_configuration: Optional[Reques Returns: Optional[AccessPackage] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -108,7 +105,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -120,7 +116,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -133,7 +128,6 @@ def to_patch_request_information(self,body: AccessPackage, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -148,7 +142,6 @@ def with_url(self,raw_url: str) -> AccessPackagesWithUniqueNameRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackagesWithUniqueNameRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackagesWithUniqueNameRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py index 74e5aea95f4..c528e4a0b12 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/get_applicable_policy_requirements/get_applicable_policy_requirements_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[GetApplicablePolicyRequirementsPostResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackage-getapplicablepolicyrequirements?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GetApplicablePolicyRequirementsRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: GetApplicablePolicyRequirementsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetApplicablePolicyRequirementsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/move_to_catalog/move_to_catalog_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/move_to_catalog/move_to_catalog_request_builder.py index 689c6f69520..e810a8b1c11 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/move_to_catalog/move_to_catalog_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/access_packages_with_unique_name/move_to_catalog/move_to_catalog_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: MoveToCatalogPostRequestBody, request_configuration: O Returns: None Find more info here: https://learn.microsoft.com/graph/api/accesspackage-movetocatalog?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: MoveToCatalogPostRequestBody, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MoveToCatalogRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MoveToCatalogRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MoveToCatalogRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/available_access_packages_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/available_access_packages_request_builder.py index 588d1d35042..9fc6716a11b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/available_access_packages_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/available_access_packages_request_builder.py @@ -39,7 +39,6 @@ def by_available_access_package_id(self,available_access_package_id: str) -> Ava param available_access_package_id: The unique identifier of availableAccessPackage Returns: AvailableAccessPackageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if available_access_package_id is None: raise TypeError("available_access_package_id cannot be null.") from .item.available_access_package_item_request_builder import AvailableAccessPackageItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Availabl param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AvailableAccessPackageCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AvailableAccessPackage, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AvailableAccessPackage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AvailableAccessPackage, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AvailableAccessPackagesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AvailableAccessPackagesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AvailableAccessPackagesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/count/count_request_builder.py index 9fbcfd2c01a..0cdb1a4c5c6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/available_access_package_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/available_access_package_item_request_builder.py index 53b18f76fa1..366a5a472a0 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/available_access_package_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/available_access_package_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Availabl param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AvailableAccessPackage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AvailableAccessPackage, request_configuration: Option param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AvailableAccessPackage] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AvailableAccessPackage, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AvailableAccessPackageItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AvailableAccessPackageItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AvailableAccessPackageItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/count/count_request_builder.py index 3bddb44bce4..78a0310465c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py index dc582c3fb3e..8402b35af64 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/item/access_package_resource_role_scope_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageResourceRoleScope] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AccessPackageResourceRoleScopeItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: AccessPackageResourceRoleScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageResourceRoleScopeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/resource_role_scopes_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/resource_role_scopes_request_builder.py index 5f1b90450f9..017ed18fc27 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/resource_role_scopes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/available_access_packages/item/resource_role_scopes/resource_role_scopes_request_builder.py @@ -38,7 +38,6 @@ def by_access_package_resource_role_scope_id(self,access_package_resource_role_s param access_package_resource_role_scope_id: The unique identifier of accessPackageResourceRoleScope Returns: AccessPackageResourceRoleScopeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_resource_role_scope_id is None: raise TypeError("access_package_resource_role_scope_id cannot be null.") from .item.access_package_resource_role_scope_item_request_builder import AccessPackageResourceRoleScopeItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Resource Returns: Optional[AccessPackageResourceRoleScopeCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/availableaccesspackage-list-resourcerolescopes?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> ResourceRoleScopesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ResourceRoleScopesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ResourceRoleScopesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/connected_organizations_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/connected_organizations_request_builder.py index e5e2e35a2d6..43d608d6cd2 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/connected_organizations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/connected_organizations_request_builder.py @@ -39,7 +39,6 @@ def by_connected_organization_id(self,connected_organization_id: str) -> Connect param connected_organization_id: The unique identifier of connectedOrganization Returns: ConnectedOrganizationItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if connected_organization_id is None: raise TypeError("connected_organization_id cannot be null.") from .item.connected_organization_item_request_builder import ConnectedOrganizationItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Connecte Returns: Optional[ConnectedOrganizationCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-list-connectedorganizations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: ConnectedOrganization, request_configuration: Optional Returns: Optional[ConnectedOrganization] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-post-connectedorganizations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: ConnectedOrganization, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> ConnectedOrganizationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ConnectedOrganizationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ConnectedOrganizationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/count/count_request_builder.py index 064f461766b..6f2911bd236 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/connected_organization_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/connected_organization_item_request_builder.py index 72f2dadfac5..803034a4274 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/connected_organization_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/connected_organization_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-delete?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Connecte Returns: Optional[ConnectedOrganization] Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: ConnectedOrganization, request_configuration: Optiona Returns: Optional[ConnectedOrganization] Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: ConnectedOrganization, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> ConnectedOrganizationItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ConnectedOrganizationItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ConnectedOrganizationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/count/count_request_builder.py index c1584404afc..9493cf5029b 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/external_sponsors_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/external_sponsors_request_builder.py index 21bc643fb7c..623924a11c1 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/external_sponsors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/external_sponsors_request_builder.py @@ -54,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External Returns: Optional[DirectoryObjectCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-list-externalsponsors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +74,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +85,6 @@ def with_url(self,raw_url: str) -> ExternalSponsorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ExternalSponsorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalSponsorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/item/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/item/ref/ref_request_builder.py index 591f4437b8f..e230014f017 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/item/ref/ref_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-delete-externalsponsors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/ref/ref_request_builder.py index cf2767d7f07..b0841275e9e 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/external_sponsors/ref/ref_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe Returns: None Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-delete-externalsponsors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque Returns: Optional[StringCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-list-externalsponsors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque Returns: None Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-post-externalsponsors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization%2Did}/externalSponsors/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/count/count_request_builder.py index dc6515583fd..768318eea50 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/internal_sponsors_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/internal_sponsors_request_builder.py index c8a67f9c9c3..305f25934df 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/internal_sponsors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/internal_sponsors_request_builder.py @@ -54,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Internal Returns: Optional[DirectoryObjectCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-list-internalsponsors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +74,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +85,6 @@ def with_url(self,raw_url: str) -> InternalSponsorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InternalSponsorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InternalSponsorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/item/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/item/ref/ref_request_builder.py index 39e72f693db..4a32e310e0c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/item/ref/ref_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-delete-internalsponsors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/ref/ref_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/ref/ref_request_builder.py index f91975230f0..ce599d08c03 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/ref/ref_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/connected_organizations/item/internal_sponsors/ref/ref_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe Returns: None Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-delete-internalsponsors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque Returns: Optional[StringCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-list-internalsponsors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque Returns: None Find more info here: https://learn.microsoft.com/graph/api/connectedorganization-post-internalsponsors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization%2Did}/internalSponsors/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/entitlement_management_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/entitlement_management_request_builder.py index 67c34dbe3ce..fa234f0d58f 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/entitlement_management_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/entitlement_management_request_builder.py @@ -71,7 +71,6 @@ def access_packages_with_unique_name(self,unique_name: str) -> AccessPackagesWit param unique_name: Alternate key of accessPackage Returns: AccessPackagesWithUniqueNameRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if unique_name is None: raise TypeError("unique_name cannot be null.") from .access_packages_with_unique_name.access_packages_with_unique_name_request_builder import AccessPackagesWithUniqueNameRequestBuilder @@ -84,7 +83,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -103,7 +101,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Entitlem param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[EntitlementManagement] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -125,7 +122,6 @@ async def patch(self,body: EntitlementManagement, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[EntitlementManagement] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -148,7 +144,6 @@ def subjects_with_object_id(self,object_id: str) -> SubjectsWithObjectIdRequestB param object_id: Alternate key of accessPackageSubject Returns: SubjectsWithObjectIdRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if object_id is None: raise TypeError("object_id cannot be null.") from .subjects_with_object_id.subjects_with_object_id_request_builder import SubjectsWithObjectIdRequestBuilder @@ -161,7 +156,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -173,7 +167,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -186,7 +179,6 @@ def to_patch_request_information(self,body: EntitlementManagement, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -201,7 +193,6 @@ def with_url(self,raw_url: str) -> EntitlementManagementRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: EntitlementManagementRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return EntitlementManagementRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/count/count_request_builder.py index 5de6bc5920b..4bb76b92eba 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/external_origin_resource_connectors_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/external_origin_resource_connectors_request_builder.py index 3b4b1b963d0..9ac0f3060c4 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/external_origin_resource_connectors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/external_origin_resource_connectors_request_builder.py @@ -39,7 +39,6 @@ def by_external_origin_resource_connector_id(self,external_origin_resource_conne param external_origin_resource_connector_id: The unique identifier of externalOriginResourceConnector Returns: ExternalOriginResourceConnectorItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if external_origin_resource_connector_id is None: raise TypeError("external_origin_resource_connector_id cannot be null.") from .item.external_origin_resource_connector_item_request_builder import ExternalOriginResourceConnectorItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External Returns: Optional[ExternalOriginResourceConnectorCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-list-externaloriginresourceconnectors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: ExternalOriginResourceConnector, request_configuration Returns: Optional[ExternalOriginResourceConnector] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagement-post-externaloriginresourceconnectors?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: ExternalOriginResourceConnector, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorsRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/item/external_origin_resource_connector_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/item/external_origin_resource_connector_item_request_builder.py index 5a70eb001d7..e3653ba4022 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/item/external_origin_resource_connector_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/external_origin_resource_connectors/item/external_origin_resource_connector_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/externaloriginresourceconnector-delete?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExternalOriginResourceConnector] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: ExternalOriginResourceConnector, request_configuratio Returns: Optional[ExternalOriginResourceConnector] Find more info here: https://learn.microsoft.com/graph/api/externaloriginresourceconnector-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: ExternalOriginResourceConnector, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> ExternalOriginResourceConnectorItemRequestBui param raw_url: The raw URL to use for the request builder. Returns: ExternalOriginResourceConnectorItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExternalOriginResourceConnectorItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/settings/settings_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/settings/settings_request_builder.py index 41c5c8f791c..dfbf1139a62 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/settings/settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/settings/settings_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Settings Returns: Optional[EntitlementManagementSettings] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagementsettings-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: EntitlementManagementSettings, request_configuration: Returns: Optional[EntitlementManagementSettings] Find more info here: https://learn.microsoft.com/graph/api/entitlementmanagementsettings-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: EntitlementManagementSettings, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> SettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/subjects/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/subjects/count/count_request_builder.py index fbae11113bb..283a9d00d7c 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/subjects/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/subjects/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/subjects/item/access_package_subject_item_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/subjects/item/access_package_subject_item_request_builder.py index c3c2874a014..370fde114e6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/subjects/item/access_package_subject_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/subjects/item/access_package_subject_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AccessPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSubject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AccessPackageSubject, request_configuration: Optional Returns: Optional[AccessPackageSubject] Find more info here: https://learn.microsoft.com/graph/api/accesspackagesubject-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AccessPackageSubject, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AccessPackageSubjectItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AccessPackageSubjectItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AccessPackageSubjectItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/subjects/item/connected_organization/connected_organization_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/subjects/item/connected_organization/connected_organization_request_builder.py index ea16a6f598a..3a7d1e83c16 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/subjects/item/connected_organization/connected_organization_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/subjects/item/connected_organization/connected_organization_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Connecte param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ConnectedOrganization] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ConnectedOrganizationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ConnectedOrganizationRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ConnectedOrganizationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/subjects/subjects_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/subjects/subjects_request_builder.py index 0a3d60e761d..dfd3cd10443 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/subjects/subjects_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/subjects/subjects_request_builder.py @@ -39,7 +39,6 @@ def by_access_package_subject_id(self,access_package_subject_id: str) -> AccessP param access_package_subject_id: The unique identifier of accessPackageSubject Returns: AccessPackageSubjectItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if access_package_subject_id is None: raise TypeError("access_package_subject_id cannot be null.") from .item.access_package_subject_item_request_builder import AccessPackageSubjectItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Subjects Returns: Optional[AccessPackageSubjectCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/accesspackagesubject-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: AccessPackageSubject, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSubject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: AccessPackageSubject, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> SubjectsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/entitlement_management/subjects_with_object_id/subjects_with_object_id_request_builder.py b/msgraph_beta/generated/identity_governance/entitlement_management/subjects_with_object_id/subjects_with_object_id_request_builder.py index 613f8689441..28df46673c6 100644 --- a/msgraph_beta/generated/identity_governance/entitlement_management/subjects_with_object_id/subjects_with_object_id_request_builder.py +++ b/msgraph_beta/generated/identity_governance/entitlement_management/subjects_with_object_id/subjects_with_object_id_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Subjects param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AccessPackageSubject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: AccessPackageSubject, request_configuration: Optional Returns: Optional[AccessPackageSubject] Find more info here: https://learn.microsoft.com/graph/api/accesspackagesubject-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: AccessPackageSubject, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> SubjectsWithObjectIdRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectsWithObjectIdRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectsWithObjectIdRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/identity_governance_request_builder.py b/msgraph_beta/generated/identity_governance/identity_governance_request_builder.py index e832d155915..729fa22adf9 100644 --- a/msgraph_beta/generated/identity_governance/identity_governance_request_builder.py +++ b/msgraph_beta/generated/identity_governance/identity_governance_request_builder.py @@ -60,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Identity param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[IdentityGovernance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +81,6 @@ async def patch(self,body: IdentityGovernance, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[IdentityGovernance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +115,6 @@ def to_patch_request_information(self,body: IdentityGovernance, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -133,7 +129,6 @@ def with_url(self,raw_url: str) -> IdentityGovernanceRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: IdentityGovernanceRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return IdentityGovernanceRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/count/count_request_builder.py index 34024506487..1d22ab62b10 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/custom_task_extensions_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/custom_task_extensions_request_builder.py index 82f97ddd12a..945aa0a9167 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/custom_task_extensions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/custom_task_extensions_request_builder.py @@ -39,7 +39,6 @@ def by_custom_task_extension_id(self,custom_task_extension_id: str) -> CustomTas param custom_task_extension_id: The unique identifier of customTaskExtension Returns: CustomTaskExtensionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if custom_task_extension_id is None: raise TypeError("custom_task_extension_id cannot be null.") from .item.custom_task_extension_item_request_builder import CustomTaskExtensionItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomTa Returns: Optional[CustomTaskExtensionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-list-customtaskextensions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: CustomTaskExtension, request_configuration: Optional[R Returns: Optional[CustomTaskExtension] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-post-customtaskextensions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: CustomTaskExtension, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> CustomTaskExtensionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CustomTaskExtensionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomTaskExtensionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/created_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/created_by_request_builder.py index 56fc6a7ef7e..5e141f5a8a9 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/created_by_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/created_by_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CreatedB param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> CreatedByRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CreatedByRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CreatedByRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py index c7e03c86820..2b2ee399210 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/service_provisioning_errors/count/count_request_builder.py index f52fc1ab846..dfd9d164923 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py index 915d5ab669b..0e7c59519ad 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/custom_task_extension_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/custom_task_extension_item_request_builder.py index f4b14fe246b..d44e8715a7a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/custom_task_extension_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/custom_task_extension_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-customtaskextension-delete?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomTa Returns: Optional[CustomTaskExtension] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-customtaskextension-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: CustomTaskExtension, request_configuration: Optional[ Returns: Optional[CustomTaskExtension] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-customtaskextension-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: CustomTaskExtension, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> CustomTaskExtensionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CustomTaskExtensionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomTaskExtensionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/last_modified_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/last_modified_by_request_builder.py index 3810d9a59c5..d21896def0a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/last_modified_by_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/last_modified_by_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[LastModi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> LastModifiedByRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LastModifiedByRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LastModifiedByRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py index 854210fc577..2969bc72336 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py index 5f58b20e3ab..d7a42baad51 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py index a14401a1b7b..85b82ae513e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/custom_task_extensions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/deleted_items_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/deleted_items_request_builder.py index d947a4f7cf1..f4d52530339 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/deleted_items_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/deleted_items_request_builder.py @@ -16,7 +16,6 @@ if TYPE_CHECKING: from ....models.deleted_item_container import DeletedItemContainer from ....models.o_data_errors.o_data_error import ODataError - from .lifecycle_policies.lifecycle_policies_request_builder import LifecyclePoliciesRequestBuilder from .workflows.workflows_request_builder import WorkflowsRequestBuilder class DeletedItemsRequestBuilder(BaseRequestBuilder): @@ -38,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DeletedI param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DeletedItemContainer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +75,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -90,7 +86,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -102,20 +97,10 @@ def with_url(self,raw_url: str) -> DeletedItemsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DeletedItemsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DeletedItemsRequestBuilder(self.request_adapter, raw_url) - @property - def lifecycle_policies(self) -> LifecyclePoliciesRequestBuilder: - """ - Provides operations to manage the lifecyclePolicies property of the microsoft.graph.deletedItemContainer entity. - """ - from .lifecycle_policies.lifecycle_policies_request_builder import LifecyclePoliciesRequestBuilder - - return LifecyclePoliciesRequestBuilder(self.request_adapter, self.path_parameters) - @property def workflows(self) -> WorkflowsRequestBuilder: """ diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/count/count_request_builder.py deleted file mode 100644 index 7b3cfe616a1..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/count/count_request_builder.py +++ /dev/null @@ -1,107 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ......models.o_data_errors.o_data_error import ODataError - -class CountRequestBuilder(BaseRequestBuilder): - """ - Provides operations to count the resources in the collection. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new CountRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/$count{?%24filter,%24search}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> Optional[int]: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[int] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - return await self.request_adapter.send_primitive_async(request_info, "int", error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "text/plain;q=0.9") - return request_info - - def with_url(self,raw_url: str) -> CountRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: CountRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return CountRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class CountRequestBuilderGetQueryParameters(): - """ - Get the number of the resource - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "filter": - return "%24filter" - if original_name == "search": - return "%24search" - return original_name - - # Filter items by property values - filter: Optional[str] = None - - # Search items by search phrases - search: Optional[str] = None - - - @dataclass - class CountRequestBuilderGetRequestConfiguration(RequestConfiguration[CountRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/created_by/created_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/created_by/created_by_request_builder.py deleted file mode 100644 index c9371cb19fe..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/created_by/created_by_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .......models.directory_object import DirectoryObject - from .......models.o_data_errors.o_data_error import ODataError - -class CreatedByRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the createdBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new CreatedByRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/createdBy{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]] = None) -> Optional[DirectoryObject]: - """ - Get createdBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[DirectoryObject] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .......models.directory_object import DirectoryObject - - return await self.request_adapter.send_async(request_info, DirectoryObject, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get createdBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> CreatedByRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: CreatedByRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return CreatedByRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class CreatedByRequestBuilderGetQueryParameters(): - """ - Get createdBy from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class CreatedByRequestBuilderGetRequestConfiguration(RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/last_modified_by/last_modified_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/last_modified_by/last_modified_by_request_builder.py deleted file mode 100644 index 376c73f4bf0..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/last_modified_by/last_modified_by_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .......models.directory_object import DirectoryObject - from .......models.o_data_errors.o_data_error import ODataError - -class LastModifiedByRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the lastModifiedBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LastModifiedByRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/lastModifiedBy{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]] = None) -> Optional[DirectoryObject]: - """ - Get lastModifiedBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[DirectoryObject] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .......models.directory_object import DirectoryObject - - return await self.request_adapter.send_async(request_info, DirectoryObject, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get lastModifiedBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LastModifiedByRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LastModifiedByRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LastModifiedByRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class LastModifiedByRequestBuilderGetQueryParameters(): - """ - Get lastModifiedBy from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LastModifiedByRequestBuilderGetRequestConfiguration(RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/lifecycle_policy_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/lifecycle_policy_item_request_builder.py deleted file mode 100644 index a0faa493c3a..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/lifecycle_policy_item_request_builder.py +++ /dev/null @@ -1,198 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ......models.identity_governance.lifecycle_policy import LifecyclePolicy - from ......models.o_data_errors.o_data_error import ODataError - from .created_by.created_by_request_builder import CreatedByRequestBuilder - from .last_modified_by.last_modified_by_request_builder import LastModifiedByRequestBuilder - from .microsoft_graph_identity_governance_restore.microsoft_graph_identity_governance_restore_request_builder import MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - from .rules.rules_request_builder import RulesRequestBuilder - from .versions.versions_request_builder import VersionsRequestBuilder - -class LifecyclePolicyItemRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the lifecyclePolicies property of the microsoft.graph.deletedItemContainer entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePolicyItemRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}{?%24expand,%24select}", path_parameters) - - async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None: - """ - Delete navigation property lifecyclePolicies for identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: None - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_delete_request_information( - request_configuration - ) - from ......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - return await self.request_adapter.send_no_response_content_async(request_info, error_mapping) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicy]: - """ - Get lifecyclePolicies from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicy] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ......models.identity_governance.lifecycle_policy import LifecyclePolicy - - return await self.request_adapter.send_async(request_info, LifecyclePolicy, error_mapping) - - def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Delete navigation property lifecyclePolicies for identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get lifecyclePolicies from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LifecyclePolicyItemRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePolicyItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePolicyItemRequestBuilder(self.request_adapter, raw_url) - - @property - def created_by(self) -> CreatedByRequestBuilder: - """ - Provides operations to manage the createdBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .created_by.created_by_request_builder import CreatedByRequestBuilder - - return CreatedByRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def last_modified_by(self) -> LastModifiedByRequestBuilder: - """ - Provides operations to manage the lastModifiedBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .last_modified_by.last_modified_by_request_builder import LastModifiedByRequestBuilder - - return LastModifiedByRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def microsoft_graph_identity_governance_restore(self) -> MicrosoftGraphIdentityGovernanceRestoreRequestBuilder: - """ - Provides operations to call the restore method. - """ - from .microsoft_graph_identity_governance_restore.microsoft_graph_identity_governance_restore_request_builder import MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - - return MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def rules(self) -> RulesRequestBuilder: - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .rules.rules_request_builder import RulesRequestBuilder - - return RulesRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def versions(self) -> VersionsRequestBuilder: - """ - Provides operations to manage the versions property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .versions.versions_request_builder import VersionsRequestBuilder - - return VersionsRequestBuilder(self.request_adapter, self.path_parameters) - - @dataclass - class LifecyclePolicyItemRequestBuilderDeleteRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - @dataclass - class LifecyclePolicyItemRequestBuilderGetQueryParameters(): - """ - Get lifecyclePolicies from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LifecyclePolicyItemRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py deleted file mode 100644 index 71ced31703e..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py +++ /dev/null @@ -1,84 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .......models.identity_governance.lifecycle_policy import LifecyclePolicy - from .......models.o_data_errors.o_data_error import ODataError - -class MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(BaseRequestBuilder): - """ - Provides operations to call the restore method. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new MicrosoftGraphIdentityGovernanceRestoreRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/microsoft.graph.identityGovernance.restore", path_parameters) - - async def post(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[LifecyclePolicy]: - """ - Invoke action restore - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicy] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_post_request_information( - request_configuration - ) - from .......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .......models.identity_governance.lifecycle_policy import LifecyclePolicy - - return await self.request_adapter.send_async(request_info, LifecyclePolicy, error_mapping) - - def to_post_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Invoke action restore - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceRestoreRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class MicrosoftGraphIdentityGovernanceRestoreRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/rules/item/lifecycle_policy_rule_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/rules/item/lifecycle_policy_rule_item_request_builder.py deleted file mode 100644 index 59c7ab109eb..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/rules/item/lifecycle_policy_rule_item_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ........models.identity_governance.lifecycle_policy_rule import LifecyclePolicyRule - from ........models.o_data_errors.o_data_error import ODataError - -class LifecyclePolicyRuleItemRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePolicyRuleItemRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/rules/{lifecyclePolicyRule%2Did}{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyRule]: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyRule] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ........models.identity_governance.lifecycle_policy_rule import LifecyclePolicyRule - - return await self.request_adapter.send_async(request_info, LifecyclePolicyRule, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LifecyclePolicyRuleItemRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePolicyRuleItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePolicyRuleItemRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class LifecyclePolicyRuleItemRequestBuilderGetQueryParameters(): - """ - Get rules from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LifecyclePolicyRuleItemRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/created_by/created_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/created_by/created_by_request_builder.py deleted file mode 100644 index 85a106fe975..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/created_by/created_by_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .........models.directory_object import DirectoryObject - from .........models.o_data_errors.o_data_error import ODataError - -class CreatedByRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the createdBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new CreatedByRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/createdBy{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]] = None) -> Optional[DirectoryObject]: - """ - Get createdBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[DirectoryObject] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .........models.directory_object import DirectoryObject - - return await self.request_adapter.send_async(request_info, DirectoryObject, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get createdBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> CreatedByRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: CreatedByRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return CreatedByRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class CreatedByRequestBuilderGetQueryParameters(): - """ - Get createdBy from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class CreatedByRequestBuilderGetRequestConfiguration(RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/last_modified_by/last_modified_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/last_modified_by/last_modified_by_request_builder.py deleted file mode 100644 index 9cede968ed1..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/last_modified_by/last_modified_by_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .........models.directory_object import DirectoryObject - from .........models.o_data_errors.o_data_error import ODataError - -class LastModifiedByRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the lastModifiedBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LastModifiedByRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/lastModifiedBy{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]] = None) -> Optional[DirectoryObject]: - """ - Get lastModifiedBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[DirectoryObject] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .........models.directory_object import DirectoryObject - - return await self.request_adapter.send_async(request_info, DirectoryObject, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get lastModifiedBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LastModifiedByRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LastModifiedByRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LastModifiedByRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class LastModifiedByRequestBuilderGetQueryParameters(): - """ - Get lastModifiedBy from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LastModifiedByRequestBuilderGetRequestConfiguration(RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/lifecycle_policy_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/lifecycle_policy_item_request_builder.py deleted file mode 100644 index 802baacdc13..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/lifecycle_policy_item_request_builder.py +++ /dev/null @@ -1,150 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ........models.identity_governance.lifecycle_policy import LifecyclePolicy - from ........models.o_data_errors.o_data_error import ODataError - from .created_by.created_by_request_builder import CreatedByRequestBuilder - from .last_modified_by.last_modified_by_request_builder import LastModifiedByRequestBuilder - from .microsoft_graph_identity_governance_restore.microsoft_graph_identity_governance_restore_request_builder import MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - from .rules.rules_request_builder import RulesRequestBuilder - -class LifecyclePolicyItemRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the versions property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePolicyItemRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicy]: - """ - Get versions from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicy] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ........models.identity_governance.lifecycle_policy import LifecyclePolicy - - return await self.request_adapter.send_async(request_info, LifecyclePolicy, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get versions from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LifecyclePolicyItemRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePolicyItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePolicyItemRequestBuilder(self.request_adapter, raw_url) - - @property - def created_by(self) -> CreatedByRequestBuilder: - """ - Provides operations to manage the createdBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .created_by.created_by_request_builder import CreatedByRequestBuilder - - return CreatedByRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def last_modified_by(self) -> LastModifiedByRequestBuilder: - """ - Provides operations to manage the lastModifiedBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .last_modified_by.last_modified_by_request_builder import LastModifiedByRequestBuilder - - return LastModifiedByRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def microsoft_graph_identity_governance_restore(self) -> MicrosoftGraphIdentityGovernanceRestoreRequestBuilder: - """ - Provides operations to call the restore method. - """ - from .microsoft_graph_identity_governance_restore.microsoft_graph_identity_governance_restore_request_builder import MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - - return MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def rules(self) -> RulesRequestBuilder: - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .rules.rules_request_builder import RulesRequestBuilder - - return RulesRequestBuilder(self.request_adapter, self.path_parameters) - - @dataclass - class LifecyclePolicyItemRequestBuilderGetQueryParameters(): - """ - Get versions from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LifecyclePolicyItemRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py deleted file mode 100644 index 9058eb9a37e..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py +++ /dev/null @@ -1,84 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .........models.identity_governance.lifecycle_policy import LifecyclePolicy - from .........models.o_data_errors.o_data_error import ODataError - -class MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(BaseRequestBuilder): - """ - Provides operations to call the restore method. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new MicrosoftGraphIdentityGovernanceRestoreRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/microsoft.graph.identityGovernance.restore", path_parameters) - - async def post(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[LifecyclePolicy]: - """ - Invoke action restore - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicy] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_post_request_information( - request_configuration - ) - from .........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .........models.identity_governance.lifecycle_policy import LifecyclePolicy - - return await self.request_adapter.send_async(request_info, LifecyclePolicy, error_mapping) - - def to_post_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Invoke action restore - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceRestoreRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class MicrosoftGraphIdentityGovernanceRestoreRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/rules/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/rules/count/count_request_builder.py deleted file mode 100644 index 474204cf397..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/rules/count/count_request_builder.py +++ /dev/null @@ -1,107 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ..........models.o_data_errors.o_data_error import ODataError - -class CountRequestBuilder(BaseRequestBuilder): - """ - Provides operations to count the resources in the collection. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new CountRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/rules/$count{?%24filter,%24search}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> Optional[int]: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[int] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ..........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - return await self.request_adapter.send_primitive_async(request_info, "int", error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "text/plain;q=0.9") - return request_info - - def with_url(self,raw_url: str) -> CountRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: CountRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return CountRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class CountRequestBuilderGetQueryParameters(): - """ - Get the number of the resource - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "filter": - return "%24filter" - if original_name == "search": - return "%24search" - return original_name - - # Filter items by property values - filter: Optional[str] = None - - # Search items by search phrases - search: Optional[str] = None - - - @dataclass - class CountRequestBuilderGetRequestConfiguration(RequestConfiguration[CountRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/rules/item/lifecycle_policy_rule_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/rules/item/lifecycle_policy_rule_item_request_builder.py deleted file mode 100644 index 2223b5747ad..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/rules/item/lifecycle_policy_rule_item_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ..........models.identity_governance.lifecycle_policy_rule import LifecyclePolicyRule - from ..........models.o_data_errors.o_data_error import ODataError - -class LifecyclePolicyRuleItemRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePolicyRuleItemRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/rules/{lifecyclePolicyRule%2Did}{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyRule]: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyRule] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ..........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ..........models.identity_governance.lifecycle_policy_rule import LifecyclePolicyRule - - return await self.request_adapter.send_async(request_info, LifecyclePolicyRule, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LifecyclePolicyRuleItemRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePolicyRuleItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePolicyRuleItemRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class LifecyclePolicyRuleItemRequestBuilderGetQueryParameters(): - """ - Get rules from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LifecyclePolicyRuleItemRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/rules/rules_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/rules/rules_request_builder.py deleted file mode 100644 index 2330a152041..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/item/rules/rules_request_builder.py +++ /dev/null @@ -1,166 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .........models.identity_governance.lifecycle_policy_rule_collection_response import LifecyclePolicyRuleCollectionResponse - from .........models.o_data_errors.o_data_error import ODataError - from .count.count_request_builder import CountRequestBuilder - from .item.lifecycle_policy_rule_item_request_builder import LifecyclePolicyRuleItemRequestBuilder - -class RulesRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new RulesRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/rules{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) - - def by_lifecycle_policy_rule_id(self,lifecycle_policy_rule_id: str) -> LifecyclePolicyRuleItemRequestBuilder: - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - param lifecycle_policy_rule_id: The unique identifier of lifecyclePolicyRule - Returns: LifecyclePolicyRuleItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if lifecycle_policy_rule_id is None: - raise TypeError("lifecycle_policy_rule_id cannot be null.") - from .item.lifecycle_policy_rule_item_request_builder import LifecyclePolicyRuleItemRequestBuilder - - url_tpl_params = get_path_parameters(self.path_parameters) - url_tpl_params["lifecyclePolicyRule%2Did"] = lifecycle_policy_rule_id - return LifecyclePolicyRuleItemRequestBuilder(self.request_adapter, url_tpl_params) - - async def get(self,request_configuration: Optional[RequestConfiguration[RulesRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyRuleCollectionResponse]: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyRuleCollectionResponse] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .........models.identity_governance.lifecycle_policy_rule_collection_response import LifecyclePolicyRuleCollectionResponse - - return await self.request_adapter.send_async(request_info, LifecyclePolicyRuleCollectionResponse, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[RulesRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> RulesRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: RulesRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return RulesRequestBuilder(self.request_adapter, raw_url) - - @property - def count(self) -> CountRequestBuilder: - """ - Provides operations to count the resources in the collection. - """ - from .count.count_request_builder import CountRequestBuilder - - return CountRequestBuilder(self.request_adapter, self.path_parameters) - - @dataclass - class RulesRequestBuilderGetQueryParameters(): - """ - Get rules from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "count": - return "%24count" - if original_name == "expand": - return "%24expand" - if original_name == "filter": - return "%24filter" - if original_name == "orderby": - return "%24orderby" - if original_name == "search": - return "%24search" - if original_name == "select": - return "%24select" - if original_name == "skip": - return "%24skip" - if original_name == "top": - return "%24top" - return original_name - - # Include count of items - count: Optional[bool] = None - - # Expand related entities - expand: Optional[list[str]] = None - - # Filter items by property values - filter: Optional[str] = None - - # Order items by property values - orderby: Optional[list[str]] = None - - # Search items by search phrases - search: Optional[str] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - # Skip the first n items - skip: Optional[int] = None - - # Show only the first n items - top: Optional[int] = None - - - @dataclass - class RulesRequestBuilderGetRequestConfiguration(RequestConfiguration[RulesRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/lifecycle_policies_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/lifecycle_policies_request_builder.py deleted file mode 100644 index 8452e2092c7..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/lifecycle_policies_request_builder.py +++ /dev/null @@ -1,166 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .....models.identity_governance.lifecycle_policy_collection_response import LifecyclePolicyCollectionResponse - from .....models.o_data_errors.o_data_error import ODataError - from .count.count_request_builder import CountRequestBuilder - from .item.lifecycle_policy_item_request_builder import LifecyclePolicyItemRequestBuilder - -class LifecyclePoliciesRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the lifecyclePolicies property of the microsoft.graph.deletedItemContainer entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePoliciesRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) - - def by_lifecycle_policy_id(self,lifecycle_policy_id: str) -> LifecyclePolicyItemRequestBuilder: - """ - Provides operations to manage the lifecyclePolicies property of the microsoft.graph.deletedItemContainer entity. - param lifecycle_policy_id: The unique identifier of lifecyclePolicy - Returns: LifecyclePolicyItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if lifecycle_policy_id is None: - raise TypeError("lifecycle_policy_id cannot be null.") - from .item.lifecycle_policy_item_request_builder import LifecyclePolicyItemRequestBuilder - - url_tpl_params = get_path_parameters(self.path_parameters) - url_tpl_params["lifecyclePolicy%2Did"] = lifecycle_policy_id - return LifecyclePolicyItemRequestBuilder(self.request_adapter, url_tpl_params) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyCollectionResponse]: - """ - Get lifecyclePolicies from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyCollectionResponse] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .....models.identity_governance.lifecycle_policy_collection_response import LifecyclePolicyCollectionResponse - - return await self.request_adapter.send_async(request_info, LifecyclePolicyCollectionResponse, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get lifecyclePolicies from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LifecyclePoliciesRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePoliciesRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePoliciesRequestBuilder(self.request_adapter, raw_url) - - @property - def count(self) -> CountRequestBuilder: - """ - Provides operations to count the resources in the collection. - """ - from .count.count_request_builder import CountRequestBuilder - - return CountRequestBuilder(self.request_adapter, self.path_parameters) - - @dataclass - class LifecyclePoliciesRequestBuilderGetQueryParameters(): - """ - Get lifecyclePolicies from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "count": - return "%24count" - if original_name == "expand": - return "%24expand" - if original_name == "filter": - return "%24filter" - if original_name == "orderby": - return "%24orderby" - if original_name == "search": - return "%24search" - if original_name == "select": - return "%24select" - if original_name == "skip": - return "%24skip" - if original_name == "top": - return "%24top" - return original_name - - # Include count of items - count: Optional[bool] = None - - # Expand related entities - expand: Optional[list[str]] = None - - # Filter items by property values - filter: Optional[str] = None - - # Order items by property values - orderby: Optional[list[str]] = None - - # Search items by search phrases - search: Optional[str] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - # Skip the first n items - skip: Optional[int] = None - - # Show only the first n items - top: Optional[int] = None - - - @dataclass - class LifecyclePoliciesRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/count/count_request_builder.py index a598898c12f..adf387b4202 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/administration_scope_targets_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/administration_scope_targets_request_builder.py index 7f91865bd31..d4e7ed6062f 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/administration_scope_targets_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/administration_scope_targets_request_builder.py @@ -38,7 +38,6 @@ def by_directory_object_id(self,directory_object_id: str) -> DirectoryObjectItem param directory_object_id: The unique identifier of directoryObject Returns: DirectoryObjectItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if directory_object_id is None: raise TypeError("directory_object_id cannot be null.") from .item.directory_object_item_request_builder import DirectoryObjectItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Administ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObjectCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> AdministrationScopeTargetsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AdministrationScopeTargetsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AdministrationScopeTargetsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/count/count_request_builder.py index ab0af1ed72c..d8896ac32bb 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/item/directory_object_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/item/directory_object_item_request_builder.py index c66500fe1f0..cb45a6ac1c5 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/item/directory_object_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/administration_scope_targets/item/directory_object_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> DirectoryObjectItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoryObjectItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoryObjectItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/created_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/created_by_request_builder.py index dee2e33e26f..b772565288d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/created_by_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/created_by_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CreatedB param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> CreatedByRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CreatedByRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CreatedByRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/mailbox_settings/mailbox_settings_request_builder.py index e3ae31cbd0f..157e9acd3a7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/service_provisioning_errors/count/count_request_builder.py index 27c10f28e3e..a234fb40f09 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py index 3bccd6384f8..d9ec5f61c87 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/count/count_request_builder.py index e45ab1bf4d0..059d8de3f33 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/execution_scope_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/execution_scope_request_builder.py index 9b021439c2a..4f0825998e3 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/execution_scope_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/execution_scope_request_builder.py @@ -38,7 +38,6 @@ def by_user_processing_result_id(self,user_processing_result_id: str) -> UserPro param user_processing_result_id: The unique identifier of userProcessingResult Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if user_processing_result_id is None: raise TypeError("user_processing_result_id cannot be null.") from .item.user_processing_result_item_request_builder import UserProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Executio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ExecutionScopeRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ExecutionScopeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExecutionScopeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/item/user_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/item/user_processing_result_item_request_builder.py index 75f9763c3cc..5fb08bf609a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/item/user_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/execution_scope/item/user_processing_result_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> UserProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/last_modified_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/last_modified_by_request_builder.py index 063453c0536..a6bdf49d9d2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/last_modified_by_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/last_modified_by_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[LastModi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> LastModifiedByRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LastModifiedByRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LastModifiedByRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py index 668c4417286..d6d710ed4a4 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py index 974a6df3420..031a42836aa 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py index 3766d21c35b..8c7da5c8a8a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate/microsoft_graph_identity_governance_activate_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate/microsoft_graph_identity_governance_activate_request_builder.py index 0fa49dde75f..6bc43d12b82 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate/microsoft_graph_identity_governance_activate_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate/microsoft_graph_identity_governance_activate_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ActivatePostRequestBody, request_configuration: Option Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ActivatePostRequestBody, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceActivateReque param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceActivateRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceActivateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate_and_wait/microsoft_graph_identity_governance_activate_and_wait_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate_and_wait/microsoft_graph_identity_governance_activate_and_wait_request_builder.py index 1dc064c04d4..5af57e1cf79 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate_and_wait/microsoft_graph_identity_governance_activate_and_wait_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate_and_wait/microsoft_graph_identity_governance_activate_and_wait_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: ActivateAndWaitPostRequestBody, request_configuration: Returns: Optional[AwaitedWorkflowProcessingResult] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-activateandwait?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: ActivateAndWaitPostRequestBody, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceActivateAndWa param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceActivateAndWaitRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceActivateAndWaitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate_with_scope/microsoft_graph_identity_governance_activate_with_scope_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate_with_scope/microsoft_graph_identity_governance_activate_with_scope_request_builder.py index 3ff7bbdd576..1577d2e2d69 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate_with_scope/microsoft_graph_identity_governance_activate_with_scope_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_activate_with_scope/microsoft_graph_identity_governance_activate_with_scope_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ActivateWithScopePostRequestBody, request_configuratio Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-activatewithscope?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ActivateWithScopePostRequestBody, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceActivateWithS param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceActivateWithScopeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceActivateWithScopeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_clear_quarantine/microsoft_graph_identity_governance_clear_quarantine_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_clear_quarantine/microsoft_graph_identity_governance_clear_quarantine_request_builder.py index efd9e498ffd..f1de5f54739 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_clear_quarantine/microsoft_graph_identity_governance_clear_quarantine_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_clear_quarantine/microsoft_graph_identity_governance_clear_quarantine_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[Workflow] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-clearquarantine?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceClearQuaranti param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceClearQuarantineRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceClearQuarantineRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_create_new_version/microsoft_graph_identity_governance_create_new_version_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_create_new_version/microsoft_graph_identity_governance_create_new_version_request_builder.py index 89e9a23fb4c..ee16855c970 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_create_new_version/microsoft_graph_identity_governance_create_new_version_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_create_new_version/microsoft_graph_identity_governance_create_new_version_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: CreateNewVersionPostRequestBody, request_configuration Returns: Optional[Workflow] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: CreateNewVersionPostRequestBody, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceCreateNewVers param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceCreateNewVersionRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceCreateNewVersionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py index 426032945ee..485c5fba140 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[Workflow] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceRestoreReques param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceRestoreRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/count/count_request_builder.py index 1e8a8fa012e..f454a8e9fbc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/count/count_request_builder.py index 14f8f773ac5..e4a65fc584a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/item/run_item_request_builder.py index 832e9d87ff9..9b7e7a9dadc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/item/run_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/reprocessed_runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/reprocessed_runs_request_builder.py index 18c6b3c6ed0..cbe1cfeb873 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/reprocessed_runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/reprocessed_runs/reprocessed_runs_request_builder.py @@ -38,7 +38,6 @@ def by_run_id1(self,run_id1: str) -> RunItemRequestBuilder: param run_id1: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id1 is None: raise TypeError("run_id1 cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Reproces param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ReprocessedRunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessedRunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessedRunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/run_item_request_builder.py index f6cef14805c..272da7346ab 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/run_item_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/count/count_request_builder.py index ecfc9f00464..47ba152485a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py index 7cc67351356..0807af52e8f 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py index 74b9341464b..fed58bb5086 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py index c8fb1bd240b..472c86eb39a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py @@ -38,7 +38,6 @@ def by_run_id1(self,run_id1: str) -> RunItemRequestBuilder: param run_id1: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id1 is None: raise TypeError("run_id1 cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Reproces param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ReprocessedRunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessedRunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessedRunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/subject_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/subject_processing_result_item_request_builder.py index 81ee0ca939c..e5c6164a802 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/subject_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/subject_processing_result_item_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SubjectProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py index 9374be96edf..5d6bdd23608 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index dcb0cededa8..5a1f3e9d889 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index cbafa13607f..76c21f2ff07 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 8b1171e52ce..7d846f4e901 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 0eda02e657a..14af99f861a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py index 2067fce1f18..f36cc32d0f2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py index 7c5552e8dd0..3292ef3edae 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py index 8c1f32bef1b..c58448c43e2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py index 6756b2257d6..2b4ca7a5e19 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index 69e1fbd4f7d..37bc75319c0 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SubjectSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/subject_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/subject_processing_results_request_builder.py index 15ec3133818..6390a75ea46 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/subject_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/subject_processing_results/subject_processing_results_request_builder.py @@ -40,7 +40,6 @@ def by_subject_processing_result_id(self,subject_processing_result_id: str) -> S param subject_processing_result_id: The unique identifier of subjectProcessingResult Returns: SubjectProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if subject_processing_result_id is None: raise TypeError("subject_processing_result_id cannot be null.") from .item.subject_processing_result_item_request_builder import SubjectProcessingResultItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SubjectProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -92,7 +89,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -104,7 +100,6 @@ def with_url(self,raw_url: str) -> SubjectProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/count/count_request_builder.py index d81e2e0f00e..7a7fa88f4c5 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 3fa36d27a7b..164b58641d5 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index ff37a092486..93930898e93 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 747244e50ea..41b9258911e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 1cb1549c8c5..00d6a722d73 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/subject_request_builder.py index 3a1d931f2a0..d1d9e6a2a86 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/task/task_request_builder.py index e16f1af2623..705ff0e3212 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/task_processing_result_item_request_builder.py index 0b8d50e3200..79bc27520f7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/task_processing_results_request_builder.py index 74ca3f8fe87..0840bc12023 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/count/count_request_builder.py index 87b59feba3c..6b77380aac0 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py index a0518ef4abc..9893c2f94e5 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py index 434fbdf0ff1..6a84f519ddd 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py index acbea09d538..d34e056163c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py @@ -38,7 +38,6 @@ def by_run_id1(self,run_id1: str) -> RunItemRequestBuilder: param run_id1: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id1 is None: raise TypeError("run_id1 cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Reproces param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ReprocessedRunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessedRunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessedRunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 803b5b28196..85eb1e5475b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 2fb5875c36f..150c96a9325 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 8a97a908010..be9a249dbba 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/subject_request_builder.py index 6b40d93ed6e..2ba002daa24 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/count/count_request_builder.py index e7b5a06db1a..9d94a19574b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index ed2d6163579..5cee48cad78 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 8b4ca4d05a5..8e74f0e0036 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 3767d5c289a..8eb49ea55c6 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 3d259a41b43..91e89c68f20 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py index 43f1c765123..e1a5a9f69e7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py index 2d5741e3586..7ae645dfcbe 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py index 3c826cdfb60..a21fb935ecc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py index 3fe1670b1ae..b6b4384d477 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/user_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/user_processing_result_item_request_builder.py index 70e633a0d05..a0097267ef2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/user_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/item/user_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> UserProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index 8cf2121538d..3946974c163 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/user_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/user_processing_results_request_builder.py index 704a420ea67..1f40d4b776a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/user_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/item/user_processing_results/user_processing_results_request_builder.py @@ -40,7 +40,6 @@ def by_user_processing_result_id(self,user_processing_result_id: str) -> UserPro param user_processing_result_id: The unique identifier of userProcessingResult Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if user_processing_result_id is None: raise TypeError("user_processing_result_id cannot be null.") from .item.user_processing_result_item_request_builder import UserProcessingResultItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -92,7 +89,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -104,7 +100,6 @@ def with_url(self,raw_url: str) -> UserProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index 990a1fedd77..0b0dce59e95 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/runs_request_builder.py index 4b9ad359daf..9b5c598abeb 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/runs/runs_request_builder.py @@ -40,7 +40,6 @@ def by_run_id(self,run_id: str) -> RunItemRequestBuilder: param run_id: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id is None: raise TypeError("run_id cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunsRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -92,7 +89,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -104,7 +100,6 @@ def with_url(self,raw_url: str) -> RunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/count/count_request_builder.py index e983a9fba40..d50bc820c9a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py index de7d66484d8..0c3978aa98e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py index 7b5cdfc2c28..ab1a325d47b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py index 2ad00a99300..3919a4c9f38 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py @@ -38,7 +38,6 @@ def by_run_id(self,run_id: str) -> RunItemRequestBuilder: param run_id: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id is None: raise TypeError("run_id cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Reproces param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ReprocessedRunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessedRunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessedRunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/subject_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/subject_processing_result_item_request_builder.py index 4e82610d733..4f8685bb4ce 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/subject_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/subject_processing_result_item_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SubjectProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py index 271edec2e34..7d4bfb5f38f 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 8d607215f15..02259b0a5d8 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index b2043fb044c..8f04b956f96 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 22e6b541fc2..d54f151203c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 090c3fce001..97ec3c43cbb 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py index efd9de0c8e5..4561492a5d8 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py index 95c2c98243d..325c123d2ac 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py index a0b8857d1fd..94b09ad4ebe 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py index 6bd82f5d6ae..4286579834e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index d67082d8f1c..67a5f77eec0 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SubjectSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/subject_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/subject_processing_results_request_builder.py index caf1ef9c4ab..1101559eec9 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/subject_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/subject_processing_results/subject_processing_results_request_builder.py @@ -40,7 +40,6 @@ def by_subject_processing_result_id(self,subject_processing_result_id: str) -> S param subject_processing_result_id: The unique identifier of subjectProcessingResult Returns: SubjectProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if subject_processing_result_id is None: raise TypeError("subject_processing_result_id cannot be null.") from .item.subject_processing_result_item_request_builder import SubjectProcessingResultItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SubjectProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -92,7 +89,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -104,7 +100,6 @@ def with_url(self,raw_url: str) -> SubjectProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/count/count_request_builder.py index 0183db1f2f7..6f45dba463f 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task/task_request_builder.py index 57956e24a15..f1e0959bbda 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_definition/task_definition_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_definition/task_definition_request_builder.py index 8d8b6960027..781fe6222cc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_definition/task_definition_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_definition/task_definition_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskDefi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskDefinitionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskDefinitionRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskDefinitionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/count/count_request_builder.py index 5b8f5926e3a..db91d1651b5 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index bf5318a7684..30187fc1acc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 7e6a5d1dd2c..2ce2730d9ca 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 33c2d320969..a12b1c4cfce 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 881032207c3..3454f0ea8f2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/subject_request_builder.py index dc9d206991c..a35246df1d3 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/task/task_request_builder.py index 10854328687..fa89b23d853 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/task_processing_result_item_request_builder.py index c74e7d31284..9877a6e2798 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/task_processing_results_request_builder.py index 114c342b9af..ade0dce8564 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_report_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_report_item_request_builder.py index 16c1adc46cf..79f6d158896 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_report_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/item/task_report_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRepo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskReport] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskReportItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskReportItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskReportItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index 34513562682..201883ffa96 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskReportSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/task_reports_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/task_reports_request_builder.py index 8f27ff698d2..9d93f06ca2b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/task_reports_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/task_reports/task_reports_request_builder.py @@ -40,7 +40,6 @@ def by_task_report_id(self,task_report_id: str) -> TaskReportItemRequestBuilder: param task_report_id: The unique identifier of taskReport Returns: TaskReportItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_report_id is None: raise TypeError("task_report_id cannot be null.") from .item.task_report_item_request_builder import TaskReportItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRepo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskReportCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -92,7 +89,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -104,7 +100,6 @@ def with_url(self,raw_url: str) -> TaskReportsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskReportsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskReportsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/count/count_request_builder.py index fd8dc775efe..02f1490fa2b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_item_request_builder.py index 2c49ec30f92..21b66417740 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskItem param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: Task, request_configuration: Optional[RequestConfigur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: Task, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> TaskItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/count/count_request_builder.py index 0760492fcbb..80620d3e6b7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 2336f2f80fb..6ae40ca09cb 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 4bd1f766fd2..a55dc0c1ec2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index cd8d8c57004..b2b0dc3b54b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 3f19fdbdf74..43560a46bbd 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py index c496990f3b7..be72c5a3593 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/task/task_request_builder.py index 72554b060d7..2d42a31b076 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py index 867e9445e6d..ecaa7ecdba6 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/task_processing_results_request_builder.py index 86284016d05..ba937a7dc4f 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/tasks_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/tasks_request_builder.py index 6835dac69e1..f88e8795605 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/tasks_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/tasks/tasks_request_builder.py @@ -39,7 +39,6 @@ def by_task_id(self,task_id: str) -> TaskItemRequestBuilder: param task_id: The unique identifier of task Returns: TaskItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_id is None: raise TypeError("task_id cannot be null.") from .item.task_item_request_builder import TaskItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TasksReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: Task, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: Task, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> TasksRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TasksRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TasksRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/count/count_request_builder.py index 75d7c187ee9..2c25a3b494f 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py index 1a072eb63a4..472695b629d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py index b01901d5a41..bad8d20af21 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py index 26a00cacffd..34bec96ecba 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py @@ -38,7 +38,6 @@ def by_run_id(self,run_id: str) -> RunItemRequestBuilder: param run_id: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id is None: raise TypeError("run_id cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Reproces param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ReprocessedRunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessedRunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessedRunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index ee1a4d44673..cc1ad959a2b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 90f7c6d93e2..c2a1912aa91 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index ffd9868c92f..e89b6ef9720 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/subject_request_builder.py index a7daa1beac2..e5639539a4b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/count/count_request_builder.py index 4e421c2a7c6..f50b504f487 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index bdf22fc9bae..5a2ea135d5b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index d7908524e4e..87dbcfbd49a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index c45459b7ddc..da6a858b596 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index b32ba4ed68c..62041aad43a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py index 3a55dd79bf5..5c90085bcd5 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py index bdf2adcb21d..bc63676e944 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py index 4cc80468dd4..2b11b357949 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py index 24aea4c911e..4467c1c3f3d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/user_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/user_processing_result_item_request_builder.py index 3f8add77a57..ccb1167e7d7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/user_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/item/user_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> UserProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index 55d3a84aa8a..3bc0f14f77c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/user_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/user_processing_results_request_builder.py index 54ba3af7997..cd1d80117c4 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/user_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/user_processing_results/user_processing_results_request_builder.py @@ -40,7 +40,6 @@ def by_user_processing_result_id(self,user_processing_result_id: str) -> UserPro param user_processing_result_id: The unique identifier of userProcessingResult Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if user_processing_result_id is None: raise TypeError("user_processing_result_id cannot be null.") from .item.user_processing_result_item_request_builder import UserProcessingResultItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -92,7 +89,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -104,7 +100,6 @@ def with_url(self,raw_url: str) -> UserProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/count/count_request_builder.py index 1b51990089b..92ad38d7930 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/administration_scope_targets_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/administration_scope_targets_request_builder.py index 3d5d9c0300e..16c026259fa 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/administration_scope_targets_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/administration_scope_targets_request_builder.py @@ -38,7 +38,6 @@ def by_directory_object_id(self,directory_object_id: str) -> DirectoryObjectItem param directory_object_id: The unique identifier of directoryObject Returns: DirectoryObjectItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if directory_object_id is None: raise TypeError("directory_object_id cannot be null.") from .item.directory_object_item_request_builder import DirectoryObjectItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Administ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObjectCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> AdministrationScopeTargetsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AdministrationScopeTargetsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AdministrationScopeTargetsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/count/count_request_builder.py index 926ed4979d4..74745828e11 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/item/directory_object_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/item/directory_object_item_request_builder.py index a2819a11ddc..ca2472adc65 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/item/directory_object_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/administration_scope_targets/item/directory_object_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> DirectoryObjectItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoryObjectItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoryObjectItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/created_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/created_by_request_builder.py index aba4fc751b5..4ca64088237 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/created_by_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/created_by_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CreatedB param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> CreatedByRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CreatedByRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CreatedByRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py index 55ca621c28c..5abc9eaaedd 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/service_provisioning_errors/count/count_request_builder.py index 4dff932d3b6..a63d9e7326d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py index 42f5a40503a..210e60bf705 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/last_modified_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/last_modified_by_request_builder.py index 3453543e504..015e3fcfdb7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/last_modified_by_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/last_modified_by_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[LastModi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> LastModifiedByRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LastModifiedByRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LastModifiedByRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py index 071ca7ef7ab..9293e5276af 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py index d1132c5fd30..6dc29c17087 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py index feb531378df..5729fe013cd 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/count/count_request_builder.py index 87535d656fe..8bbe3eb5902 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_item_request_builder.py index 15e2365f67d..c3a224d872c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskItem param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: Task, request_configuration: Optional[RequestConfigur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: Task, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> TaskItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/count/count_request_builder.py index 5f8f31a424a..8a3ff61cc44 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 10308e91d85..2f571434d6f 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 590f4a20cae..96a8f710339 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 35c55706a20..f3ffbd6bea1 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 8e86ccee5d1..fc6720b0f3f 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py index 4873e9c68f2..0e85c6980f3 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/task/task_request_builder.py index 70bba53629f..6fed4ef8c10 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py index 997652b008b..5d1ef15c3dc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/task_processing_results_request_builder.py index 705e19e12dd..8e2987a19cd 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/tasks_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/tasks_request_builder.py index 8a9d7d8bb6e..2e93039e24a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/tasks_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/tasks/tasks_request_builder.py @@ -39,7 +39,6 @@ def by_task_id(self,task_id: str) -> TaskItemRequestBuilder: param task_id: The unique identifier of task Returns: TaskItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_id is None: raise TypeError("task_id cannot be null.") from .item.task_item_request_builder import TaskItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TasksReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: Task, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: Task, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> TasksRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TasksRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TasksRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/workflow_version_version_number_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/workflow_version_version_number_item_request_builder.py index 4ab15f09a9a..973f1aa3d99 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/workflow_version_version_number_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/item/workflow_version_version_number_item_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Workflow param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[WorkflowVersion] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> WorkflowVersionVersionNumberItemRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: WorkflowVersionVersionNumberItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return WorkflowVersionVersionNumberItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/versions_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/versions_request_builder.py index cb3f11b17a5..5f31b178d5e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/versions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/versions/versions_request_builder.py @@ -38,7 +38,6 @@ def by_workflow_version_version_number(self,workflow_version_version_number: int param workflow_version_version_number: The unique identifier of workflowVersion Returns: WorkflowVersionVersionNumberItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if workflow_version_version_number is None: raise TypeError("workflow_version_version_number cannot be null.") from .item.workflow_version_version_number_item_request_builder import WorkflowVersionVersionNumberItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Versions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[WorkflowVersionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> VersionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VersionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VersionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/workflow_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/workflow_item_request_builder.py index 3192518b3d4..bcc98343df7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/workflow_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/item/workflow_item_request_builder.py @@ -57,7 +57,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-deleteditemcontainer-delete?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -77,7 +76,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Workflow Returns: Optional[Workflow] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-deleteditemcontainer-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -98,7 +96,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -110,7 +107,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -122,7 +118,6 @@ def with_url(self,raw_url: str) -> WorkflowItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: WorkflowItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return WorkflowItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/workflows_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/workflows_request_builder.py index ba062203070..b40f12d6190 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/workflows_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/workflows/workflows_request_builder.py @@ -38,7 +38,6 @@ def by_workflow_id(self,workflow_id: str) -> WorkflowItemRequestBuilder: param workflow_id: The unique identifier of workflow Returns: WorkflowItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if workflow_id is None: raise TypeError("workflow_id cannot be null.") from .item.workflow_item_request_builder import WorkflowItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Workflow Returns: Optional[WorkflowCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-list-deleteditems?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> WorkflowsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: WorkflowsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return WorkflowsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/insights_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/insights_request_builder.py index 0cbbfb6966e..e901add035d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/insights_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/insights_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Insights param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Insights] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ def microsoft_graph_identity_governance_top_tasks_processed_summary_with_start_d param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceTopTasksProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -98,7 +95,6 @@ def microsoft_graph_identity_governance_top_workflows_processed_summary_with_sta param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceTopWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -114,7 +110,6 @@ def microsoft_graph_identity_governance_workflows_processed_by_category_with_sta param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceWorkflowsProcessedByCategoryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -130,7 +125,6 @@ def microsoft_graph_identity_governance_workflows_processed_summary_with_start_d param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -146,7 +140,6 @@ async def patch(self,body: Insights, request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Insights] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -169,7 +162,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -181,7 +173,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -194,7 +185,6 @@ def to_patch_request_information(self,body: Insights, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -209,7 +199,6 @@ def with_url(self,raw_url: str) -> InsightsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: InsightsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return InsightsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_top_tasks_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_top_tasks_processed_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_top_tasks_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_top_tasks_processed_summary_with_start_date_time_with_end_date_time_request_builder.py index 6125d24f7a1..0c60c6a7e45 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_top_tasks_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_top_tasks_processed_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_top_tasks_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_top_tasks_processed_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -43,7 +43,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Microsof Returns: Optional[TopTasksProcessedSummaryWithStartDateTimeWithEndDateTimeGetResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-insights-toptasksprocessedsummary?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -64,7 +63,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -76,7 +74,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceTopTasksProce param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceTopTasksProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceTopTasksProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_top_workflows_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_top_workflows_processed_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_top_workflows_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_top_workflows_processed_summary_with_start_date_time_with_end_date_time_request_builder.py index 586960e6151..b34d647ed10 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_top_workflows_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_top_workflows_processed_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_top_workflows_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_top_workflows_processed_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -43,7 +43,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Microsof Returns: Optional[TopWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeGetResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-insights-topworkflowsprocessedsummary?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -64,7 +63,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -76,7 +74,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceTopWorkflowsP param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceTopWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceTopWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_workflows_processed_by_category_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_workflows_processed_by_category_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_workflows_processed_by_category_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_workflows_processed_by_category_with_start_date_time_with_end_date_time_request_builder.py index 40ff5872f1c..e44c9ff2610 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_workflows_processed_by_category_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_workflows_processed_by_category_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_workflows_processed_by_category_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_workflows_processed_by_category_with_start_date_time_with_end_date_time_request_builder.py @@ -43,7 +43,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar Returns: Optional[WorkflowsInsightsByCategory] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-insights-workflowsprocessedbycategory?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -64,7 +63,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -76,7 +74,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceWorkflowsProc param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceWorkflowsProcessedByCategoryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceWorkflowsProcessedByCategoryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_workflows_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_workflows_processed_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_workflows_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_workflows_processed_summary_with_start_date_time_with_end_date_time_request_builder.py index 9c24e6604dc..e1efa29de95 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_workflows_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_workflows_processed_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/insights/microsoft_graph_identity_governance_workflows_processed_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_workflows_processed_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -43,7 +43,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar Returns: Optional[WorkflowsInsightsSummary] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-insights-workflowsprocessedsummary?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -64,7 +63,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -76,7 +74,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceWorkflowsProc param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/count/count_request_builder.py deleted file mode 100644 index c6879c73347..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/count/count_request_builder.py +++ /dev/null @@ -1,107 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .....models.o_data_errors.o_data_error import ODataError - -class CountRequestBuilder(BaseRequestBuilder): - """ - Provides operations to count the resources in the collection. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new CountRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/$count{?%24filter,%24search}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> Optional[int]: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[int] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - return await self.request_adapter.send_primitive_async(request_info, "int", error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "text/plain;q=0.9") - return request_info - - def with_url(self,raw_url: str) -> CountRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: CountRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return CountRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class CountRequestBuilderGetQueryParameters(): - """ - Get the number of the resource - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "filter": - return "%24filter" - if original_name == "search": - return "%24search" - return original_name - - # Filter items by property values - filter: Optional[str] = None - - # Search items by search phrases - search: Optional[str] = None - - - @dataclass - class CountRequestBuilderGetRequestConfiguration(RequestConfiguration[CountRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/created_by/created_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/created_by/created_by_request_builder.py deleted file mode 100644 index 746b5104fa1..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/created_by/created_by_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ......models.directory_object import DirectoryObject - from ......models.o_data_errors.o_data_error import ODataError - -class CreatedByRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the createdBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new CreatedByRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/createdBy{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]] = None) -> Optional[DirectoryObject]: - """ - Get createdBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[DirectoryObject] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ......models.directory_object import DirectoryObject - - return await self.request_adapter.send_async(request_info, DirectoryObject, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get createdBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> CreatedByRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: CreatedByRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return CreatedByRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class CreatedByRequestBuilderGetQueryParameters(): - """ - Get createdBy from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class CreatedByRequestBuilderGetRequestConfiguration(RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/last_modified_by/last_modified_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/last_modified_by/last_modified_by_request_builder.py deleted file mode 100644 index 0ee2024c6d7..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/last_modified_by/last_modified_by_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ......models.directory_object import DirectoryObject - from ......models.o_data_errors.o_data_error import ODataError - -class LastModifiedByRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the lastModifiedBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LastModifiedByRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/lastModifiedBy{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]] = None) -> Optional[DirectoryObject]: - """ - Get lastModifiedBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[DirectoryObject] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ......models.directory_object import DirectoryObject - - return await self.request_adapter.send_async(request_info, DirectoryObject, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get lastModifiedBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LastModifiedByRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LastModifiedByRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LastModifiedByRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class LastModifiedByRequestBuilderGetQueryParameters(): - """ - Get lastModifiedBy from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LastModifiedByRequestBuilderGetRequestConfiguration(RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/lifecycle_policy_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/lifecycle_policy_item_request_builder.py deleted file mode 100644 index f825c258aac..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/lifecycle_policy_item_request_builder.py +++ /dev/null @@ -1,198 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .....models.identity_governance.lifecycle_policy import LifecyclePolicy - from .....models.o_data_errors.o_data_error import ODataError - from .created_by.created_by_request_builder import CreatedByRequestBuilder - from .last_modified_by.last_modified_by_request_builder import LastModifiedByRequestBuilder - from .microsoft_graph_identity_governance_restore.microsoft_graph_identity_governance_restore_request_builder import MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - from .rules.rules_request_builder import RulesRequestBuilder - from .versions.versions_request_builder import VersionsRequestBuilder - -class LifecyclePolicyItemRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the lifecyclePolicies property of the microsoft.graph.identityGovernance.lifecycleWorkflowsContainer entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePolicyItemRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}{?%24expand,%24select}", path_parameters) - - async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None: - """ - Delete navigation property lifecyclePolicies for identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: None - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_delete_request_information( - request_configuration - ) - from .....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - return await self.request_adapter.send_no_response_content_async(request_info, error_mapping) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicy]: - """ - Get lifecyclePolicies from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicy] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .....models.identity_governance.lifecycle_policy import LifecyclePolicy - - return await self.request_adapter.send_async(request_info, LifecyclePolicy, error_mapping) - - def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Delete navigation property lifecyclePolicies for identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get lifecyclePolicies from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LifecyclePolicyItemRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePolicyItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePolicyItemRequestBuilder(self.request_adapter, raw_url) - - @property - def created_by(self) -> CreatedByRequestBuilder: - """ - Provides operations to manage the createdBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .created_by.created_by_request_builder import CreatedByRequestBuilder - - return CreatedByRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def last_modified_by(self) -> LastModifiedByRequestBuilder: - """ - Provides operations to manage the lastModifiedBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .last_modified_by.last_modified_by_request_builder import LastModifiedByRequestBuilder - - return LastModifiedByRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def microsoft_graph_identity_governance_restore(self) -> MicrosoftGraphIdentityGovernanceRestoreRequestBuilder: - """ - Provides operations to call the restore method. - """ - from .microsoft_graph_identity_governance_restore.microsoft_graph_identity_governance_restore_request_builder import MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - - return MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def rules(self) -> RulesRequestBuilder: - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .rules.rules_request_builder import RulesRequestBuilder - - return RulesRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def versions(self) -> VersionsRequestBuilder: - """ - Provides operations to manage the versions property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .versions.versions_request_builder import VersionsRequestBuilder - - return VersionsRequestBuilder(self.request_adapter, self.path_parameters) - - @dataclass - class LifecyclePolicyItemRequestBuilderDeleteRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - @dataclass - class LifecyclePolicyItemRequestBuilderGetQueryParameters(): - """ - Get lifecyclePolicies from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LifecyclePolicyItemRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py deleted file mode 100644 index 995708093bd..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py +++ /dev/null @@ -1,84 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ......models.identity_governance.lifecycle_policy import LifecyclePolicy - from ......models.o_data_errors.o_data_error import ODataError - -class MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(BaseRequestBuilder): - """ - Provides operations to call the restore method. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new MicrosoftGraphIdentityGovernanceRestoreRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/microsoft.graph.identityGovernance.restore", path_parameters) - - async def post(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[LifecyclePolicy]: - """ - Invoke action restore - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicy] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_post_request_information( - request_configuration - ) - from ......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ......models.identity_governance.lifecycle_policy import LifecyclePolicy - - return await self.request_adapter.send_async(request_info, LifecyclePolicy, error_mapping) - - def to_post_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Invoke action restore - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceRestoreRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class MicrosoftGraphIdentityGovernanceRestoreRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/rules/item/lifecycle_policy_rule_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/rules/item/lifecycle_policy_rule_item_request_builder.py deleted file mode 100644 index 7bfc277b5da..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/rules/item/lifecycle_policy_rule_item_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .......models.identity_governance.lifecycle_policy_rule import LifecyclePolicyRule - from .......models.o_data_errors.o_data_error import ODataError - -class LifecyclePolicyRuleItemRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePolicyRuleItemRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/rules/{lifecyclePolicyRule%2Did}{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyRule]: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyRule] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .......models.identity_governance.lifecycle_policy_rule import LifecyclePolicyRule - - return await self.request_adapter.send_async(request_info, LifecyclePolicyRule, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LifecyclePolicyRuleItemRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePolicyRuleItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePolicyRuleItemRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class LifecyclePolicyRuleItemRequestBuilderGetQueryParameters(): - """ - Get rules from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LifecyclePolicyRuleItemRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/created_by/created_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/created_by/created_by_request_builder.py deleted file mode 100644 index 07897b760cf..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/created_by/created_by_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ........models.directory_object import DirectoryObject - from ........models.o_data_errors.o_data_error import ODataError - -class CreatedByRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the createdBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new CreatedByRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/createdBy{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]] = None) -> Optional[DirectoryObject]: - """ - Get createdBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[DirectoryObject] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ........models.directory_object import DirectoryObject - - return await self.request_adapter.send_async(request_info, DirectoryObject, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get createdBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> CreatedByRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: CreatedByRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return CreatedByRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class CreatedByRequestBuilderGetQueryParameters(): - """ - Get createdBy from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class CreatedByRequestBuilderGetRequestConfiguration(RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/last_modified_by/last_modified_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/last_modified_by/last_modified_by_request_builder.py deleted file mode 100644 index 952f0218a41..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/last_modified_by/last_modified_by_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ........models.directory_object import DirectoryObject - from ........models.o_data_errors.o_data_error import ODataError - -class LastModifiedByRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the lastModifiedBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LastModifiedByRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/lastModifiedBy{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]] = None) -> Optional[DirectoryObject]: - """ - Get lastModifiedBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[DirectoryObject] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ........models.directory_object import DirectoryObject - - return await self.request_adapter.send_async(request_info, DirectoryObject, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get lastModifiedBy from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LastModifiedByRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LastModifiedByRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LastModifiedByRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class LastModifiedByRequestBuilderGetQueryParameters(): - """ - Get lastModifiedBy from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LastModifiedByRequestBuilderGetRequestConfiguration(RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/lifecycle_policy_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/lifecycle_policy_item_request_builder.py deleted file mode 100644 index 9dd33646ab8..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/lifecycle_policy_item_request_builder.py +++ /dev/null @@ -1,150 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .......models.identity_governance.lifecycle_policy import LifecyclePolicy - from .......models.o_data_errors.o_data_error import ODataError - from .created_by.created_by_request_builder import CreatedByRequestBuilder - from .last_modified_by.last_modified_by_request_builder import LastModifiedByRequestBuilder - from .microsoft_graph_identity_governance_restore.microsoft_graph_identity_governance_restore_request_builder import MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - from .rules.rules_request_builder import RulesRequestBuilder - -class LifecyclePolicyItemRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the versions property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePolicyItemRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicy]: - """ - Get versions from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicy] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .......models.identity_governance.lifecycle_policy import LifecyclePolicy - - return await self.request_adapter.send_async(request_info, LifecyclePolicy, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get versions from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LifecyclePolicyItemRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePolicyItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePolicyItemRequestBuilder(self.request_adapter, raw_url) - - @property - def created_by(self) -> CreatedByRequestBuilder: - """ - Provides operations to manage the createdBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .created_by.created_by_request_builder import CreatedByRequestBuilder - - return CreatedByRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def last_modified_by(self) -> LastModifiedByRequestBuilder: - """ - Provides operations to manage the lastModifiedBy property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .last_modified_by.last_modified_by_request_builder import LastModifiedByRequestBuilder - - return LastModifiedByRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def microsoft_graph_identity_governance_restore(self) -> MicrosoftGraphIdentityGovernanceRestoreRequestBuilder: - """ - Provides operations to call the restore method. - """ - from .microsoft_graph_identity_governance_restore.microsoft_graph_identity_governance_restore_request_builder import MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - - return MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def rules(self) -> RulesRequestBuilder: - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - from .rules.rules_request_builder import RulesRequestBuilder - - return RulesRequestBuilder(self.request_adapter, self.path_parameters) - - @dataclass - class LifecyclePolicyItemRequestBuilderGetQueryParameters(): - """ - Get versions from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LifecyclePolicyItemRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py deleted file mode 100644 index 9f9de76c26b..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py +++ /dev/null @@ -1,84 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ........models.identity_governance.lifecycle_policy import LifecyclePolicy - from ........models.o_data_errors.o_data_error import ODataError - -class MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(BaseRequestBuilder): - """ - Provides operations to call the restore method. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new MicrosoftGraphIdentityGovernanceRestoreRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/microsoft.graph.identityGovernance.restore", path_parameters) - - async def post(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[LifecyclePolicy]: - """ - Invoke action restore - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicy] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_post_request_information( - request_configuration - ) - from ........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ........models.identity_governance.lifecycle_policy import LifecyclePolicy - - return await self.request_adapter.send_async(request_info, LifecyclePolicy, error_mapping) - - def to_post_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Invoke action restore - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceRestoreRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: MicrosoftGraphIdentityGovernanceRestoreRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class MicrosoftGraphIdentityGovernanceRestoreRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/rules/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/rules/count/count_request_builder.py deleted file mode 100644 index 8db0a39fc5c..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/rules/count/count_request_builder.py +++ /dev/null @@ -1,107 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .........models.o_data_errors.o_data_error import ODataError - -class CountRequestBuilder(BaseRequestBuilder): - """ - Provides operations to count the resources in the collection. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new CountRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/rules/$count{?%24filter,%24search}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> Optional[int]: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[int] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - return await self.request_adapter.send_primitive_async(request_info, "int", error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "text/plain;q=0.9") - return request_info - - def with_url(self,raw_url: str) -> CountRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: CountRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return CountRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class CountRequestBuilderGetQueryParameters(): - """ - Get the number of the resource - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "filter": - return "%24filter" - if original_name == "search": - return "%24search" - return original_name - - # Filter items by property values - filter: Optional[str] = None - - # Search items by search phrases - search: Optional[str] = None - - - @dataclass - class CountRequestBuilderGetRequestConfiguration(RequestConfiguration[CountRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/rules/item/lifecycle_policy_rule_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/rules/item/lifecycle_policy_rule_item_request_builder.py deleted file mode 100644 index 4cadff3d84c..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/rules/item/lifecycle_policy_rule_item_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .........models.identity_governance.lifecycle_policy_rule import LifecyclePolicyRule - from .........models.o_data_errors.o_data_error import ODataError - -class LifecyclePolicyRuleItemRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePolicyRuleItemRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/rules/{lifecyclePolicyRule%2Did}{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyRule]: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyRule] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .........models.identity_governance.lifecycle_policy_rule import LifecyclePolicyRule - - return await self.request_adapter.send_async(request_info, LifecyclePolicyRule, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LifecyclePolicyRuleItemRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePolicyRuleItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePolicyRuleItemRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class LifecyclePolicyRuleItemRequestBuilderGetQueryParameters(): - """ - Get rules from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LifecyclePolicyRuleItemRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/rules/rules_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/rules/rules_request_builder.py deleted file mode 100644 index 649242cc205..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/item/rules/rules_request_builder.py +++ /dev/null @@ -1,166 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ........models.identity_governance.lifecycle_policy_rule_collection_response import LifecyclePolicyRuleCollectionResponse - from ........models.o_data_errors.o_data_error import ODataError - from .count.count_request_builder import CountRequestBuilder - from .item.lifecycle_policy_rule_item_request_builder import LifecyclePolicyRuleItemRequestBuilder - -class RulesRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new RulesRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/versions/{lifecyclePolicy%2Did1}/rules{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) - - def by_lifecycle_policy_rule_id(self,lifecycle_policy_rule_id: str) -> LifecyclePolicyRuleItemRequestBuilder: - """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - param lifecycle_policy_rule_id: The unique identifier of lifecyclePolicyRule - Returns: LifecyclePolicyRuleItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if lifecycle_policy_rule_id is None: - raise TypeError("lifecycle_policy_rule_id cannot be null.") - from .item.lifecycle_policy_rule_item_request_builder import LifecyclePolicyRuleItemRequestBuilder - - url_tpl_params = get_path_parameters(self.path_parameters) - url_tpl_params["lifecyclePolicyRule%2Did"] = lifecycle_policy_rule_id - return LifecyclePolicyRuleItemRequestBuilder(self.request_adapter, url_tpl_params) - - async def get(self,request_configuration: Optional[RequestConfiguration[RulesRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyRuleCollectionResponse]: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyRuleCollectionResponse] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ........models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ........models.identity_governance.lifecycle_policy_rule_collection_response import LifecyclePolicyRuleCollectionResponse - - return await self.request_adapter.send_async(request_info, LifecyclePolicyRuleCollectionResponse, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[RulesRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get rules from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> RulesRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: RulesRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return RulesRequestBuilder(self.request_adapter, raw_url) - - @property - def count(self) -> CountRequestBuilder: - """ - Provides operations to count the resources in the collection. - """ - from .count.count_request_builder import CountRequestBuilder - - return CountRequestBuilder(self.request_adapter, self.path_parameters) - - @dataclass - class RulesRequestBuilderGetQueryParameters(): - """ - Get rules from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "count": - return "%24count" - if original_name == "expand": - return "%24expand" - if original_name == "filter": - return "%24filter" - if original_name == "orderby": - return "%24orderby" - if original_name == "search": - return "%24search" - if original_name == "select": - return "%24select" - if original_name == "skip": - return "%24skip" - if original_name == "top": - return "%24top" - return original_name - - # Include count of items - count: Optional[bool] = None - - # Expand related entities - expand: Optional[list[str]] = None - - # Filter items by property values - filter: Optional[str] = None - - # Order items by property values - orderby: Optional[list[str]] = None - - # Search items by search phrases - search: Optional[str] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - # Skip the first n items - skip: Optional[int] = None - - # Show only the first n items - top: Optional[int] = None - - - @dataclass - class RulesRequestBuilderGetRequestConfiguration(RequestConfiguration[RulesRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/lifecycle_policies_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/lifecycle_policies_request_builder.py deleted file mode 100644 index edd4367101d..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/lifecycle_policies_request_builder.py +++ /dev/null @@ -1,214 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ....models.identity_governance.lifecycle_policy import LifecyclePolicy - from ....models.identity_governance.lifecycle_policy_collection_response import LifecyclePolicyCollectionResponse - from ....models.o_data_errors.o_data_error import ODataError - from .count.count_request_builder import CountRequestBuilder - from .item.lifecycle_policy_item_request_builder import LifecyclePolicyItemRequestBuilder - -class LifecyclePoliciesRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the lifecyclePolicies property of the microsoft.graph.identityGovernance.lifecycleWorkflowsContainer entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePoliciesRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) - - def by_lifecycle_policy_id(self,lifecycle_policy_id: str) -> LifecyclePolicyItemRequestBuilder: - """ - Provides operations to manage the lifecyclePolicies property of the microsoft.graph.identityGovernance.lifecycleWorkflowsContainer entity. - param lifecycle_policy_id: The unique identifier of lifecyclePolicy - Returns: LifecyclePolicyItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if lifecycle_policy_id is None: - raise TypeError("lifecycle_policy_id cannot be null.") - from .item.lifecycle_policy_item_request_builder import LifecyclePolicyItemRequestBuilder - - url_tpl_params = get_path_parameters(self.path_parameters) - url_tpl_params["lifecyclePolicy%2Did"] = lifecycle_policy_id - return LifecyclePolicyItemRequestBuilder(self.request_adapter, url_tpl_params) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyCollectionResponse]: - """ - Get lifecyclePolicies from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyCollectionResponse] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ....models.identity_governance.lifecycle_policy_collection_response import LifecyclePolicyCollectionResponse - - return await self.request_adapter.send_async(request_info, LifecyclePolicyCollectionResponse, error_mapping) - - async def post(self,body: LifecyclePolicy, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[LifecyclePolicy]: - """ - Create new navigation property to lifecyclePolicies for identityGovernance - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicy] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if body is None: - raise TypeError("body cannot be null.") - request_info = self.to_post_request_information( - body, request_configuration - ) - from ....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ....models.identity_governance.lifecycle_policy import LifecyclePolicy - - return await self.request_adapter.send_async(request_info, LifecyclePolicy, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get lifecyclePolicies from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def to_post_request_information(self,body: LifecyclePolicy, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Create new navigation property to lifecyclePolicies for identityGovernance - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if body is None: - raise TypeError("body cannot be null.") - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - request_info.set_content_from_parsable(self.request_adapter, "application/json", body) - return request_info - - def with_url(self,raw_url: str) -> LifecyclePoliciesRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePoliciesRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePoliciesRequestBuilder(self.request_adapter, raw_url) - - @property - def count(self) -> CountRequestBuilder: - """ - Provides operations to count the resources in the collection. - """ - from .count.count_request_builder import CountRequestBuilder - - return CountRequestBuilder(self.request_adapter, self.path_parameters) - - @dataclass - class LifecyclePoliciesRequestBuilderGetQueryParameters(): - """ - Get lifecyclePolicies from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "count": - return "%24count" - if original_name == "expand": - return "%24expand" - if original_name == "filter": - return "%24filter" - if original_name == "orderby": - return "%24orderby" - if original_name == "search": - return "%24search" - if original_name == "select": - return "%24select" - if original_name == "skip": - return "%24skip" - if original_name == "top": - return "%24top" - return original_name - - # Include count of items - count: Optional[bool] = None - - # Expand related entities - expand: Optional[list[str]] = None - - # Filter items by property values - filter: Optional[str] = None - - # Order items by property values - orderby: Optional[list[str]] = None - - # Search items by search phrases - search: Optional[str] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - # Skip the first n items - skip: Optional[int] = None - - # Show only the first n items - top: Optional[int] = None - - - @dataclass - class LifecyclePoliciesRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - @dataclass - class LifecyclePoliciesRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policy_priority_configurations/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policy_priority_configurations/count/count_request_builder.py deleted file mode 100644 index e6fb7af8ca9..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policy_priority_configurations/count/count_request_builder.py +++ /dev/null @@ -1,107 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .....models.o_data_errors.o_data_error import ODataError - -class CountRequestBuilder(BaseRequestBuilder): - """ - Provides operations to count the resources in the collection. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new CountRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicyPriorityConfigurations/$count{?%24filter,%24search}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> Optional[int]: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[int] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - return await self.request_adapter.send_primitive_async(request_info, "int", error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "text/plain;q=0.9") - return request_info - - def with_url(self,raw_url: str) -> CountRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: CountRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return CountRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class CountRequestBuilderGetQueryParameters(): - """ - Get the number of the resource - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "filter": - return "%24filter" - if original_name == "search": - return "%24search" - return original_name - - # Filter items by property values - filter: Optional[str] = None - - # Search items by search phrases - search: Optional[str] = None - - - @dataclass - class CountRequestBuilderGetRequestConfiguration(RequestConfiguration[CountRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policy_priority_configurations/item/lifecycle_policy_priority_configuration_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policy_priority_configurations/item/lifecycle_policy_priority_configuration_item_request_builder.py deleted file mode 100644 index 714cf8151a4..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policy_priority_configurations/item/lifecycle_policy_priority_configuration_item_request_builder.py +++ /dev/null @@ -1,157 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .....models.identity_governance.lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration - from .....models.o_data_errors.o_data_error import ODataError - -class LifecyclePolicyPriorityConfigurationItemRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the lifecyclePolicyPriorityConfigurations property of the microsoft.graph.identityGovernance.lifecycleWorkflowsContainer entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePolicyPriorityConfigurationItemRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicyPriorityConfigurations/{lifecyclePolicyPriorityConfiguration%2Did}{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyPriorityConfigurationItemRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyPriorityConfiguration]: - """ - Get lifecyclePolicyPriorityConfigurations from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyPriorityConfiguration] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .....models.identity_governance.lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration - - return await self.request_adapter.send_async(request_info, LifecyclePolicyPriorityConfiguration, error_mapping) - - async def patch(self,body: LifecyclePolicyPriorityConfiguration, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[LifecyclePolicyPriorityConfiguration]: - """ - Update the navigation property lifecyclePolicyPriorityConfigurations in identityGovernance - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyPriorityConfiguration] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if body is None: - raise TypeError("body cannot be null.") - request_info = self.to_patch_request_information( - body, request_configuration - ) - from .....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .....models.identity_governance.lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration - - return await self.request_adapter.send_async(request_info, LifecyclePolicyPriorityConfiguration, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyPriorityConfigurationItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get lifecyclePolicyPriorityConfigurations from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def to_patch_request_information(self,body: LifecyclePolicyPriorityConfiguration, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Update the navigation property lifecyclePolicyPriorityConfigurations in identityGovernance - param body: The request body - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if body is None: - raise TypeError("body cannot be null.") - request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - request_info.set_content_from_parsable(self.request_adapter, "application/json", body) - return request_info - - def with_url(self,raw_url: str) -> LifecyclePolicyPriorityConfigurationItemRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePolicyPriorityConfigurationItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePolicyPriorityConfigurationItemRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class LifecyclePolicyPriorityConfigurationItemRequestBuilderGetQueryParameters(): - """ - Get lifecyclePolicyPriorityConfigurations from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class LifecyclePolicyPriorityConfigurationItemRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePolicyPriorityConfigurationItemRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - @dataclass - class LifecyclePolicyPriorityConfigurationItemRequestBuilderPatchRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policy_priority_configurations/lifecycle_policy_priority_configurations_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policy_priority_configurations/lifecycle_policy_priority_configurations_request_builder.py deleted file mode 100644 index a67b2fd811c..00000000000 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policy_priority_configurations/lifecycle_policy_priority_configurations_request_builder.py +++ /dev/null @@ -1,166 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ....models.identity_governance.lifecycle_policy_priority_configuration_collection_response import LifecyclePolicyPriorityConfigurationCollectionResponse - from ....models.o_data_errors.o_data_error import ODataError - from .count.count_request_builder import CountRequestBuilder - from .item.lifecycle_policy_priority_configuration_item_request_builder import LifecyclePolicyPriorityConfigurationItemRequestBuilder - -class LifecyclePolicyPriorityConfigurationsRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the lifecyclePolicyPriorityConfigurations property of the microsoft.graph.identityGovernance.lifecycleWorkflowsContainer entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new LifecyclePolicyPriorityConfigurationsRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicyPriorityConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) - - def by_lifecycle_policy_priority_configuration_id(self,lifecycle_policy_priority_configuration_id: str) -> LifecyclePolicyPriorityConfigurationItemRequestBuilder: - """ - Provides operations to manage the lifecyclePolicyPriorityConfigurations property of the microsoft.graph.identityGovernance.lifecycleWorkflowsContainer entity. - param lifecycle_policy_priority_configuration_id: The unique identifier of lifecyclePolicyPriorityConfiguration - Returns: LifecyclePolicyPriorityConfigurationItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if lifecycle_policy_priority_configuration_id is None: - raise TypeError("lifecycle_policy_priority_configuration_id cannot be null.") - from .item.lifecycle_policy_priority_configuration_item_request_builder import LifecyclePolicyPriorityConfigurationItemRequestBuilder - - url_tpl_params = get_path_parameters(self.path_parameters) - url_tpl_params["lifecyclePolicyPriorityConfiguration%2Did"] = lifecycle_policy_priority_configuration_id - return LifecyclePolicyPriorityConfigurationItemRequestBuilder(self.request_adapter, url_tpl_params) - - async def get(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyPriorityConfigurationCollectionResponse]: - """ - Get lifecyclePolicyPriorityConfigurations from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyPriorityConfigurationCollectionResponse] - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ....models.identity_governance.lifecycle_policy_priority_configuration_collection_response import LifecyclePolicyPriorityConfigurationCollectionResponse - - return await self.request_adapter.send_async(request_info, LifecyclePolicyPriorityConfigurationCollectionResponse, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get lifecyclePolicyPriorityConfigurations from identityGovernance - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> LifecyclePolicyPriorityConfigurationsRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: LifecyclePolicyPriorityConfigurationsRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return LifecyclePolicyPriorityConfigurationsRequestBuilder(self.request_adapter, raw_url) - - @property - def count(self) -> CountRequestBuilder: - """ - Provides operations to count the resources in the collection. - """ - from .count.count_request_builder import CountRequestBuilder - - return CountRequestBuilder(self.request_adapter, self.path_parameters) - - @dataclass - class LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters(): - """ - Get lifecyclePolicyPriorityConfigurations from identityGovernance - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "count": - return "%24count" - if original_name == "expand": - return "%24expand" - if original_name == "filter": - return "%24filter" - if original_name == "orderby": - return "%24orderby" - if original_name == "search": - return "%24search" - if original_name == "select": - return "%24select" - if original_name == "skip": - return "%24skip" - if original_name == "top": - return "%24top" - return original_name - - # Include count of items - count: Optional[bool] = None - - # Expand related entities - expand: Optional[list[str]] = None - - # Filter items by property values - filter: Optional[str] = None - - # Order items by property values - orderby: Optional[list[str]] = None - - # Search items by search phrases - search: Optional[str] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - # Skip the first n items - skip: Optional[int] = None - - # Show only the first n items - top: Optional[int] = None - - - @dataclass - class LifecyclePolicyPriorityConfigurationsRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_workflows_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_workflows_request_builder.py index 9af12410ca3..3c513418ba0 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_workflows_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_workflows_request_builder.py @@ -19,8 +19,6 @@ from .custom_task_extensions.custom_task_extensions_request_builder import CustomTaskExtensionsRequestBuilder from .deleted_items.deleted_items_request_builder import DeletedItemsRequestBuilder from .insights.insights_request_builder import InsightsRequestBuilder - from .lifecycle_policies.lifecycle_policies_request_builder import LifecyclePoliciesRequestBuilder - from .lifecycle_policy_priority_configurations.lifecycle_policy_priority_configurations_request_builder import LifecyclePolicyPriorityConfigurationsRequestBuilder from .settings.settings_request_builder import SettingsRequestBuilder from .task_definitions.task_definitions_request_builder import TaskDefinitionsRequestBuilder from .workflows.workflows_request_builder import WorkflowsRequestBuilder @@ -45,7 +43,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -64,7 +61,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Lifecycl param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[LifecycleWorkflowsContainer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -86,7 +82,6 @@ async def patch(self,body: LifecycleWorkflowsContainer, request_configuration: O param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[LifecycleWorkflowsContainer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -109,7 +104,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -121,7 +115,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -134,7 +127,6 @@ def to_patch_request_information(self,body: LifecycleWorkflowsContainer, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -149,7 +141,6 @@ def with_url(self,raw_url: str) -> LifecycleWorkflowsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LifecycleWorkflowsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LifecycleWorkflowsRequestBuilder(self.request_adapter, raw_url) @@ -181,24 +172,6 @@ def insights(self) -> InsightsRequestBuilder: return InsightsRequestBuilder(self.request_adapter, self.path_parameters) - @property - def lifecycle_policies(self) -> LifecyclePoliciesRequestBuilder: - """ - Provides operations to manage the lifecyclePolicies property of the microsoft.graph.identityGovernance.lifecycleWorkflowsContainer entity. - """ - from .lifecycle_policies.lifecycle_policies_request_builder import LifecyclePoliciesRequestBuilder - - return LifecyclePoliciesRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def lifecycle_policy_priority_configurations(self) -> LifecyclePolicyPriorityConfigurationsRequestBuilder: - """ - Provides operations to manage the lifecyclePolicyPriorityConfigurations property of the microsoft.graph.identityGovernance.lifecycleWorkflowsContainer entity. - """ - from .lifecycle_policy_priority_configurations.lifecycle_policy_priority_configurations_request_builder import LifecyclePolicyPriorityConfigurationsRequestBuilder - - return LifecyclePolicyPriorityConfigurationsRequestBuilder(self.request_adapter, self.path_parameters) - @property def settings(self) -> SettingsRequestBuilder: """ diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/settings/settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/settings/settings_request_builder.py index 4288369e324..4c5bd921c97 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/settings/settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/settings/settings_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Settings Returns: Optional[LifecycleManagementSettings] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-lifecyclemanagementsettings-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def patch(self,body: LifecycleManagementSettings, request_configuration: O Returns: Optional[LifecycleManagementSettings] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-lifecyclemanagementsettings-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -83,7 +81,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -96,7 +93,6 @@ def to_patch_request_information(self,body: LifecycleManagementSettings, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -111,7 +107,6 @@ def with_url(self,raw_url: str) -> SettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/count/count_request_builder.py index 823f0967d20..c6499b56a20 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/item/task_definition_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/item/task_definition_item_request_builder.py index dd6ff995b46..b27a25c0b45 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/item/task_definition_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/item/task_definition_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskDefi Returns: Optional[TaskDefinition] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskdefinition-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> TaskDefinitionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskDefinitionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskDefinitionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/task_definitions_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/task_definitions_request_builder.py index 2acd8a87c95..ab2860045a6 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/task_definitions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/task_definitions/task_definitions_request_builder.py @@ -38,7 +38,6 @@ def by_task_definition_id(self,task_definition_id: str) -> TaskDefinitionItemReq param task_definition_id: The unique identifier of taskDefinition Returns: TaskDefinitionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_definition_id is None: raise TypeError("task_definition_id cannot be null.") from .item.task_definition_item_request_builder import TaskDefinitionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskDefi Returns: Optional[TaskDefinitionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-list-taskdefinitions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> TaskDefinitionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskDefinitionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskDefinitionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/count/count_request_builder.py index b09df6d7289..4c237c43b6e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/count/count_request_builder.py index 9d59cc66703..d5e818ebdd4 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_item_request_builder.py index 110889ddfd8..02688db9ef7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskItem param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> TaskItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/count/count_request_builder.py index 7a7fc4af648..6d869c45d9d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 3096f9e5cf5..5778c52084e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 12f272beca8..1e2fa8dbc4c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 307cdebf000..d1e700b6d42 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 241616888a6..2ff4ac370c6 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py index 60ba7587e4e..89046b90b30 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/task/task_request_builder.py index 9f5bcd1078e..f467110059e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py index 67f624f54d7..9227e6ab388 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/task_processing_results_request_builder.py index f4b4de61705..248aa890ea1 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/tasks_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/tasks_request_builder.py index 9cf92380204..3241d6174f7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/tasks_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/tasks/tasks_request_builder.py @@ -38,7 +38,6 @@ def by_task_id(self,task_id: str) -> TaskItemRequestBuilder: param task_id: The unique identifier of task Returns: TaskItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_id is None: raise TypeError("task_id cannot be null.") from .item.task_item_request_builder import TaskItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TasksReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TasksRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TasksRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TasksRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/workflow_template_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/workflow_template_item_request_builder.py index c52482fb688..e15c118a043 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/workflow_template_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/item/workflow_template_item_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Workflow Returns: Optional[WorkflowTemplate] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflowtemplate-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> WorkflowTemplateItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: WorkflowTemplateItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return WorkflowTemplateItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/workflow_templates_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/workflow_templates_request_builder.py index 5a4bd23ad06..4ab2ce08b1c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/workflow_templates_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflow_templates/workflow_templates_request_builder.py @@ -38,7 +38,6 @@ def by_workflow_template_id(self,workflow_template_id: str) -> WorkflowTemplateI param workflow_template_id: The unique identifier of workflowTemplate Returns: WorkflowTemplateItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if workflow_template_id is None: raise TypeError("workflow_template_id cannot be null.") from .item.workflow_template_item_request_builder import WorkflowTemplateItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Workflow Returns: Optional[WorkflowTemplateCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-list-workflowtemplates?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> WorkflowTemplatesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: WorkflowTemplatesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return WorkflowTemplatesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/count/count_request_builder.py index 0f55f603227..7bcd7bc11f0 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/administration_scope_targets_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/administration_scope_targets_request_builder.py index f9e27f292d2..73ce3182b46 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/administration_scope_targets_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/administration_scope_targets_request_builder.py @@ -38,7 +38,6 @@ def by_directory_object_id(self,directory_object_id: str) -> DirectoryObjectItem param directory_object_id: The unique identifier of directoryObject Returns: DirectoryObjectItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if directory_object_id is None: raise TypeError("directory_object_id cannot be null.") from .item.directory_object_item_request_builder import DirectoryObjectItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Administ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObjectCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> AdministrationScopeTargetsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AdministrationScopeTargetsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AdministrationScopeTargetsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/count/count_request_builder.py index d8a09a3f6a6..5e156cdd30d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/item/directory_object_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/item/directory_object_item_request_builder.py index 752ab7275cc..9045dc5680f 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/item/directory_object_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/administration_scope_targets/item/directory_object_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> DirectoryObjectItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoryObjectItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoryObjectItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/created_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/created_by_request_builder.py index fdbe9ed535e..1e77c53386d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/created_by_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/created_by_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CreatedB param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> CreatedByRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CreatedByRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CreatedByRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/mailbox_settings/mailbox_settings_request_builder.py index 9f252fc7c4f..ae3384d783e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/service_provisioning_errors/count/count_request_builder.py index 0d472d4ec67..2728e9cefc3 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py index 7ac450634d0..74999aaa079 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/count/count_request_builder.py index c8049544b42..a8d779a7387 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/execution_scope_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/execution_scope_request_builder.py index d4594fda211..bbca640be3d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/execution_scope_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/execution_scope_request_builder.py @@ -38,7 +38,6 @@ def by_user_processing_result_id(self,user_processing_result_id: str) -> UserPro param user_processing_result_id: The unique identifier of userProcessingResult Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if user_processing_result_id is None: raise TypeError("user_processing_result_id cannot be null.") from .item.user_processing_result_item_request_builder import UserProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Executio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ExecutionScopeRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ExecutionScopeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExecutionScopeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/item/user_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/item/user_processing_result_item_request_builder.py index 621a50b4cc8..ecf40af13e4 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/item/user_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/execution_scope/item/user_processing_result_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> UserProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/last_modified_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/last_modified_by_request_builder.py index e639079935e..5c34b07e5ab 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/last_modified_by_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/last_modified_by_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[LastModi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> LastModifiedByRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LastModifiedByRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LastModifiedByRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py index aa6d84e61d4..7d196b1c4cd 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py index f166e9a4d4b..605cb8c35b8 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py index aac56c500d8..124e5d4512e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate/microsoft_graph_identity_governance_activate_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate/microsoft_graph_identity_governance_activate_request_builder.py index d1763893eec..95f5625f846 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate/microsoft_graph_identity_governance_activate_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate/microsoft_graph_identity_governance_activate_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ActivatePostRequestBody, request_configuration: Option Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ActivatePostRequestBody, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceActivateReque param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceActivateRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceActivateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate_and_wait/microsoft_graph_identity_governance_activate_and_wait_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate_and_wait/microsoft_graph_identity_governance_activate_and_wait_request_builder.py index 7193580abf1..c955750833a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate_and_wait/microsoft_graph_identity_governance_activate_and_wait_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate_and_wait/microsoft_graph_identity_governance_activate_and_wait_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: ActivateAndWaitPostRequestBody, request_configuration: Returns: Optional[AwaitedWorkflowProcessingResult] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-activateandwait?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: ActivateAndWaitPostRequestBody, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceActivateAndWa param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceActivateAndWaitRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceActivateAndWaitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate_with_scope/microsoft_graph_identity_governance_activate_with_scope_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate_with_scope/microsoft_graph_identity_governance_activate_with_scope_request_builder.py index d7042b0b055..85921e14faf 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate_with_scope/microsoft_graph_identity_governance_activate_with_scope_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_activate_with_scope/microsoft_graph_identity_governance_activate_with_scope_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ActivateWithScopePostRequestBody, request_configuratio Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-activatewithscope?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ActivateWithScopePostRequestBody, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceActivateWithS param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceActivateWithScopeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceActivateWithScopeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_clear_quarantine/microsoft_graph_identity_governance_clear_quarantine_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_clear_quarantine/microsoft_graph_identity_governance_clear_quarantine_request_builder.py index f30f2cf4e84..124bef4c1f8 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_clear_quarantine/microsoft_graph_identity_governance_clear_quarantine_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_clear_quarantine/microsoft_graph_identity_governance_clear_quarantine_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[Workflow] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-clearquarantine?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceClearQuaranti param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceClearQuarantineRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceClearQuarantineRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_create_new_version/microsoft_graph_identity_governance_create_new_version_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_create_new_version/microsoft_graph_identity_governance_create_new_version_request_builder.py index 1c814b26bef..79e634e0dfd 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_create_new_version/microsoft_graph_identity_governance_create_new_version_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_create_new_version/microsoft_graph_identity_governance_create_new_version_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: CreateNewVersionPostRequestBody, request_configuration Returns: Optional[Workflow] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: CreateNewVersionPostRequestBody, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceCreateNewVers param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceCreateNewVersionRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceCreateNewVersionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py index 69c79086147..44470678e15 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/microsoft_graph_identity_governance_restore/microsoft_graph_identity_governance_restore_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[Workflow] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceRestoreReques param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceRestoreRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceRestoreRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/count/count_request_builder.py index f8fd31b3df4..f96b2ca3b44 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/count/count_request_builder.py index e15cf2f1b20..086c2928d20 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/item/run_item_request_builder.py index 70c53c8903e..2523b37bc46 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/item/run_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/reprocessed_runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/reprocessed_runs_request_builder.py index 8a125309993..5ebbe7d34d3 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/reprocessed_runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/reprocessed_runs/reprocessed_runs_request_builder.py @@ -38,7 +38,6 @@ def by_run_id1(self,run_id1: str) -> RunItemRequestBuilder: param run_id1: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id1 is None: raise TypeError("run_id1 cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Reproces param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ReprocessedRunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessedRunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessedRunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/run_item_request_builder.py index 931543f9a7f..5de336fa9aa 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/run_item_request_builder.py @@ -41,7 +41,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR Returns: Optional[Run] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-run-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -62,7 +61,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -74,7 +72,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/count/count_request_builder.py index eaa6d3e0eca..8b37a8db2dc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py index dec78261890..f04e02b56ba 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py index 940a15708c7..ebfe3a2bb6d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py index fcba291de29..97d474d8dbd 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py @@ -38,7 +38,6 @@ def by_run_id1(self,run_id1: str) -> RunItemRequestBuilder: param run_id1: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id1 is None: raise TypeError("run_id1 cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Reproces param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ReprocessedRunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessedRunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessedRunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/subject_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/subject_processing_result_item_request_builder.py index 79f19402ad0..dd8267c9038 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/subject_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/subject_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectP Returns: Optional[SubjectProcessingResult] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-subjectprocessingresult-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> SubjectProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py index dff357a9c83..47eadb80366 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 43919055344..93ce24fc4a2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 9c4ec227f8a..45552ad3ab9 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index d6484aa133b..46f196428c0 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index a66a38bca9b..e9b95634d7c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py index 28f2314c7f6..88b5ee147f1 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py index 51de4d129c4..1565339e9da 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py index 0b26524ab9a..270c0dbf22d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py index e52205dab8a..488431a8bc0 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index b7ac1decc24..c84af5ad13d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SubjectSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/subject_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/subject_processing_results_request_builder.py index b51603ace74..9027a7485f4 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/subject_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/subject_processing_results/subject_processing_results_request_builder.py @@ -40,7 +40,6 @@ def by_subject_processing_result_id(self,subject_processing_result_id: str) -> S param subject_processing_result_id: The unique identifier of subjectProcessingResult Returns: SubjectProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if subject_processing_result_id is None: raise TypeError("subject_processing_result_id cannot be null.") from .item.subject_processing_result_item_request_builder import SubjectProcessingResultItemRequestBuilder @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectP Returns: Optional[SubjectProcessingResultCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-run-list-subjectprocessingresults?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -93,7 +90,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -105,7 +101,6 @@ def with_url(self,raw_url: str) -> SubjectProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/count/count_request_builder.py index d426eca5eb7..41a8e4cce79 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 98994db61cb..a16887db58a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 4ad9263e1ed..40597819724 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 1a4fe86b25a..af831373639 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 168b3f13df7..b748af7875c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/subject_request_builder.py index a2231385a06..e762e89fc36 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/task/task_request_builder.py index e3e1c96f2c3..5c5104a6b17 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/task_processing_result_item_request_builder.py index 53fe117fd25..4c443dacd53 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/task_processing_results_request_builder.py index 4a7cc78dbcc..fd0581eebab 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc Returns: Optional[TaskProcessingResultCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-run-list-taskprocessingresults?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/count/count_request_builder.py index 0f692200e12..7b8df281ee5 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py index fb960dfa041..804bee338e2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py index ac7259b392f..585da7555f8 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py index 0e49fdd4362..85a9ea69711 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py @@ -38,7 +38,6 @@ def by_run_id1(self,run_id1: str) -> RunItemRequestBuilder: param run_id1: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id1 is None: raise TypeError("run_id1 cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Reproces param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ReprocessedRunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessedRunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessedRunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 62a84f0964a..342909966cc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 9f5a2f61bd4..90c2e6edf54 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index aee505dd222..c963ece05ba 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/subject_request_builder.py index 339880ce83d..7651d152327 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/count/count_request_builder.py index 8c2a3d738a9..e33af25302c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 460e3a2ed31..d11c7091ff7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 2789d9ba882..cd81ff91737 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 50dcbc56e98..be56bdd62f3 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 4f6648427a8..00994331508 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py index 58916118d8f..532a864a17c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py index 0fadc43ea1b..bb2f5da6e53 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py index de13be4e3ef..a6ec980cca3 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py index 1d071b781a4..1d929800d36 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc Returns: Optional[TaskProcessingResultCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-userprocessingresult-list-taskprocessingresults?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/user_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/user_processing_result_item_request_builder.py index d8b16563684..97641e49e38 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/user_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/item/user_processing_result_item_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc Returns: Optional[UserProcessingResult] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-userprocessingresult-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> UserProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index 445e1e22718..4c881440bc7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/user_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/user_processing_results_request_builder.py index 3ee8b167b2d..c9570346b7c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/user_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/item/user_processing_results/user_processing_results_request_builder.py @@ -40,7 +40,6 @@ def by_user_processing_result_id(self,user_processing_result_id: str) -> UserPro param user_processing_result_id: The unique identifier of userProcessingResult Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if user_processing_result_id is None: raise TypeError("user_processing_result_id cannot be null.") from .item.user_processing_result_item_request_builder import UserProcessingResultItemRequestBuilder @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc Returns: Optional[UserProcessingResultCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-run-list-userprocessingresults?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -93,7 +90,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -105,7 +101,6 @@ def with_url(self,raw_url: str) -> UserProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index 8caefcf5a35..02a7b50d697 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/runs_request_builder.py index b661a0bb764..71f31fba4e4 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/runs/runs_request_builder.py @@ -40,7 +40,6 @@ def by_run_id(self,run_id: str) -> RunItemRequestBuilder: param run_id: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id is None: raise TypeError("run_id cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunsRequ Returns: Optional[RunCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-runs?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -93,7 +90,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -105,7 +101,6 @@ def with_url(self,raw_url: str) -> RunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/count/count_request_builder.py index 646d9a8f615..a164c9bd191 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py index 704460586bb..7454cf5c622 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py index 81622545556..e78a728537e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/item/run_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py index 0df396e26e3..3f7b37e6108 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py @@ -38,7 +38,6 @@ def by_run_id(self,run_id: str) -> RunItemRequestBuilder: param run_id: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id is None: raise TypeError("run_id cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Reproces param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ReprocessedRunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessedRunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessedRunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/subject_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/subject_processing_result_item_request_builder.py index d52d85b8e67..a92c307a298 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/subject_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/subject_processing_result_item_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SubjectProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py index f5261ee7ed8..add4799f1c7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 0d294d517cd..7f95e9841dc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 68ddb6289fd..a8e450daefd 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 56828efb353..e9c3f9da294 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 71418351a4e..84995bde0d2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py index 2f1b5052981..a7bfcf621d0 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py index 048165548e6..49901462bef 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py index 0ef8e171cf8..258d3282b88 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py index f2f4dbfdf46..bb582e14c66 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index 456e8eee526..07f8b783bd2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SubjectSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/subject_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/subject_processing_results_request_builder.py index 4f341b2e457..4283b2d001a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/subject_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/subject_processing_results/subject_processing_results_request_builder.py @@ -40,7 +40,6 @@ def by_subject_processing_result_id(self,subject_processing_result_id: str) -> S param subject_processing_result_id: The unique identifier of subjectProcessingResult Returns: SubjectProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if subject_processing_result_id is None: raise TypeError("subject_processing_result_id cannot be null.") from .item.subject_processing_result_item_request_builder import SubjectProcessingResultItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SubjectProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -92,7 +89,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -104,7 +100,6 @@ def with_url(self,raw_url: str) -> SubjectProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/count/count_request_builder.py index e7d18f30b5f..99008e8bce3 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task/task_request_builder.py index fdca707acda..324b53435be 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_definition/task_definition_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_definition/task_definition_request_builder.py index 2163f6cc744..ad3e05e08a3 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_definition/task_definition_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_definition/task_definition_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskDefi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskDefinitionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskDefinitionRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskDefinitionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/count/count_request_builder.py index 9bf18d0d199..3a8668b21bf 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 6f361ce7428..24cfedc4a75 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index e8d61a7385f..42d7a0982fa 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 872203bf4a8..6c5219dd4d2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 5935a8f08c3..e653e93f950 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/subject_request_builder.py index 89b55931884..3888af69723 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/task/task_request_builder.py index 43b259c17bb..d702e2f6f0e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/task_processing_result_item_request_builder.py index 6e1ff29bee5..6938f4cd9cc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/task_processing_results_request_builder.py index 78318b634a7..174458d45b8 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc Returns: Optional[TaskProcessingResultCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskreport-list-taskprocessingresults?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_report_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_report_item_request_builder.py index c6a6b274e1d..dcb14cafa51 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_report_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/item/task_report_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRepo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskReport] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskReportItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskReportItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskReportItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index 73dc8eed9d4..d7e48d4b0ba 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskReportSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/task_reports_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/task_reports_request_builder.py index 4a18542aa09..550e871cd56 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/task_reports_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/task_reports/task_reports_request_builder.py @@ -40,7 +40,6 @@ def by_task_report_id(self,task_report_id: str) -> TaskReportItemRequestBuilder: param task_report_id: The unique identifier of taskReport Returns: TaskReportItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_report_id is None: raise TypeError("task_report_id cannot be null.") from .item.task_report_item_request_builder import TaskReportItemRequestBuilder @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRepo Returns: Optional[TaskReportCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-taskreports?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -93,7 +90,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -105,7 +101,6 @@ def with_url(self,raw_url: str) -> TaskReportsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskReportsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskReportsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/count/count_request_builder.py index 797d371cbfd..44831f41bd7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_item_request_builder.py index 8290f2880e5..d3ed1b7ba48 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskItem param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: Task, request_configuration: Optional[RequestConfigur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: Task, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> TaskItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/count/count_request_builder.py index cc33b2545fe..a31fb675639 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 05fe51ef6d7..947e036d06d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index a5fcc66872f..b8745a4df58 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index f3538c0235b..a1661f72954 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index dd51118260c..abc94d98faa 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py index 9819e4b8a68..5e24ecd3fc2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/task/task_request_builder.py index ddf37961fcb..9a308b46bde 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py index 06cbace35d3..6f0b6845b71 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/task_processing_results_request_builder.py index 2feec1975f6..7ca16e34dce 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/tasks_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/tasks_request_builder.py index e5809917dc6..b68f6678d2c 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/tasks_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/tasks/tasks_request_builder.py @@ -39,7 +39,6 @@ def by_task_id(self,task_id: str) -> TaskItemRequestBuilder: param task_id: The unique identifier of task Returns: TaskItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_id is None: raise TypeError("task_id cannot be null.") from .item.task_item_request_builder import TaskItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TasksReq Returns: Optional[TaskCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-task?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: Task, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: Task, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> TasksRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TasksRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TasksRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/count/count_request_builder.py index 86b0dad32b0..c2d476456c6 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py index 520df0e4e69..6039aa9f08a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py index 1fea1d7be33..5a5c724f696 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/item/run_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RunItemR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Run] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RunItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RunItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py index d6c0d65b84c..bd82721094d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/reprocessed_runs/reprocessed_runs_request_builder.py @@ -38,7 +38,6 @@ def by_run_id(self,run_id: str) -> RunItemRequestBuilder: param run_id: The unique identifier of run Returns: RunItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if run_id is None: raise TypeError("run_id cannot be null.") from .item.run_item_request_builder import RunItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Reproces param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RunCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ReprocessedRunsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReprocessedRunsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReprocessedRunsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 5ef2ca4195d..7898161b64d 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 27ebaa062d1..ea024ef7d9a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 3f0b8497767..d9279fabd6b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/subject_request_builder.py index 6f4c124c30a..4e6ec6121e5 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/count/count_request_builder.py index 2eb65753b03..f398692b26b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 09dc77b71c8..8d692e107e3 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 082a155123f..83f932c5b1b 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index 5f7877dcc37..ce4e4bcd806 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 614c87db7af..85bf25c9be9 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py index 89e9f65c3c2..b8ed4419653 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py index adc10aa5b61..10aff8b55c0 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py index 14f09dd2f16..2c961adda79 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py index c625e10b61a..8398ef6c4e9 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc Returns: Optional[TaskProcessingResultCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-userprocessingresult-list-taskprocessingresults?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/user_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/user_processing_result_item_request_builder.py index 4105f991f09..b49d68f8220 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/user_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/item/user_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> UserProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py index 6c7fd4bcffa..6ff4e1d5f3e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time/microsoft_graph_identity_governance_summary_with_start_date_time_with_end_date_time_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserSummary] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceSummaryWithSt param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/user_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/user_processing_results_request_builder.py index 75e525c09ce..fa29331fa86 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/user_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/user_processing_results/user_processing_results_request_builder.py @@ -40,7 +40,6 @@ def by_user_processing_result_id(self,user_processing_result_id: str) -> UserPro param user_processing_result_id: The unique identifier of userProcessingResult Returns: UserProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if user_processing_result_id is None: raise TypeError("user_processing_result_id cannot be null.") from .item.user_processing_result_item_request_builder import UserProcessingResultItemRequestBuilder @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc Returns: Optional[UserProcessingResultCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-userprocessingresults?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ def microsoft_graph_identity_governance_summary_with_start_date_time_with_end_da param start_date_time: Usage: startDateTime={startDateTime} Returns: MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: @@ -93,7 +90,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -105,7 +101,6 @@ def with_url(self,raw_url: str) -> UserProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UserProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UserProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/count/count_request_builder.py index d0a2e7c8b5d..9256b9ab804 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/administration_scope_targets_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/administration_scope_targets_request_builder.py index 1b0d09fe412..852ecb7fce7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/administration_scope_targets_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/administration_scope_targets_request_builder.py @@ -38,7 +38,6 @@ def by_directory_object_id(self,directory_object_id: str) -> DirectoryObjectItem param directory_object_id: The unique identifier of directoryObject Returns: DirectoryObjectItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if directory_object_id is None: raise TypeError("directory_object_id cannot be null.") from .item.directory_object_item_request_builder import DirectoryObjectItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Administ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObjectCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> AdministrationScopeTargetsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AdministrationScopeTargetsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AdministrationScopeTargetsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/count/count_request_builder.py index e730b630d9a..0acba4dfce2 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/item/directory_object_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/item/directory_object_item_request_builder.py index 992b982dae4..14ff62dd0cc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/item/directory_object_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/administration_scope_targets/item/directory_object_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> DirectoryObjectItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoryObjectItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoryObjectItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/created_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/created_by_request_builder.py index bc027801897..8a586150235 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/created_by_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/created_by_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CreatedB param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> CreatedByRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CreatedByRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CreatedByRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py index f508864f05b..9b96e719624 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/service_provisioning_errors/count/count_request_builder.py index 1b7818ba077..96839250f01 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py index 5a983005f78..e52551616cc 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/created_by/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/last_modified_by_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/last_modified_by_request_builder.py index a902e1ea7bc..5dd721fad90 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/last_modified_by_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/last_modified_by_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[LastModi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> LastModifiedByRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LastModifiedByRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LastModifiedByRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py index a219d55c354..b5788870558 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py index a28da877df2..e472e353603 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py index 51c2f84c1fe..c4aa591d28f 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/last_modified_by/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/count/count_request_builder.py index 6a17c4f4176..042aa686aca 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_item_request_builder.py index a2fa35af7f1..2f4bc36d332 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskItem Returns: Optional[Task] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-task-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: Task, request_configuration: Optional[RequestConfigur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: Task, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> TaskItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/count/count_request_builder.py index 20a74ccdc4e..1f03c3354ba 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py index 682b76584e1..65e51723ca9 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/microsoft_graph_identity_governance_resume/microsoft_graph_identity_governance_resume_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ResumePostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ResumePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceResumeRequest param raw_url: The raw URL to use for the request builder. Returns: MicrosoftGraphIdentityGovernanceResumeRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MicrosoftGraphIdentityGovernanceResumeRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py index 6f3cdcc3674..60630be7b77 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/mailbox_settings/mailbox_settings_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def patch(self,body: MailboxSettings, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxSettings] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -81,7 +79,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -94,7 +91,6 @@ def to_patch_request_information(self,body: MailboxSettings, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -109,7 +105,6 @@ def with_url(self,raw_url: str) -> MailboxSettingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxSettingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxSettingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py index f6e31f98977..ff54da3ee17 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py index 82f61c6a2c9..cb4fe444b31 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py index 6fccb495049..7217d33e871 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/subject/subject_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SubjectR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> SubjectRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SubjectRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SubjectRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/task/task_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/task/task_request_builder.py index 4a77396e3e6..c4669cab6c6 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/task/task_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/task/task_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TaskRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py index c09d2d8b9c2..79f8a4da2bf 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/item/task_processing_result_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResult] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/task_processing_results_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/task_processing_results_request_builder.py index 1fcfbec0b07..19ac7c75249 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/task_processing_results_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/item/task_processing_results/task_processing_results_request_builder.py @@ -38,7 +38,6 @@ def by_task_processing_result_id(self,task_processing_result_id: str) -> TaskPro param task_processing_result_id: The unique identifier of taskProcessingResult Returns: TaskProcessingResultItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_processing_result_id is None: raise TypeError("task_processing_result_id cannot be null.") from .item.task_processing_result_item_request_builder import TaskProcessingResultItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskProc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TaskProcessingResultCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> TaskProcessingResultsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskProcessingResultsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskProcessingResultsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/tasks_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/tasks_request_builder.py index a4f7568e652..88994d22ebb 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/tasks_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/tasks/tasks_request_builder.py @@ -39,7 +39,6 @@ def by_task_id(self,task_id: str) -> TaskItemRequestBuilder: param task_id: The unique identifier of task Returns: TaskItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if task_id is None: raise TypeError("task_id cannot be null.") from .item.task_item_request_builder import TaskItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TasksReq Returns: Optional[TaskCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflowversion-list-tasks?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: Task, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Task] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: Task, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> TasksRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TasksRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TasksRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/workflow_version_version_number_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/workflow_version_version_number_item_request_builder.py index fe35eedd86d..f7645c6dd26 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/workflow_version_version_number_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/item/workflow_version_version_number_item_request_builder.py @@ -41,7 +41,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Workflow Returns: Optional[WorkflowVersion] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflowversion-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -62,7 +61,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -74,7 +72,6 @@ def with_url(self,raw_url: str) -> WorkflowVersionVersionNumberItemRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: WorkflowVersionVersionNumberItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return WorkflowVersionVersionNumberItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/versions_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/versions_request_builder.py index c7d30300467..513af568c3a 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/versions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/versions/versions_request_builder.py @@ -38,7 +38,6 @@ def by_workflow_version_version_number(self,workflow_version_version_number: int param workflow_version_version_number: The unique identifier of workflowVersion Returns: WorkflowVersionVersionNumberItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if workflow_version_version_number is None: raise TypeError("workflow_version_version_number cannot be null.") from .item.workflow_version_version_number_item_request_builder import WorkflowVersionVersionNumberItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Versions Returns: Optional[WorkflowVersionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-versions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> VersionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VersionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VersionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/workflow_item_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/workflow_item_request_builder.py index a511a4a7cf7..263ae2f2fa7 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/workflow_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/item/workflow_item_request_builder.py @@ -57,7 +57,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-delete?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -77,7 +76,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Workflow Returns: Optional[Workflow] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -100,7 +98,6 @@ async def patch(self,body: Workflow, request_configuration: Optional[RequestConf Returns: Optional[Workflow] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-workflow-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -123,7 +120,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -135,7 +131,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -148,7 +143,6 @@ def to_patch_request_information(self,body: Workflow, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -163,7 +157,6 @@ def with_url(self,raw_url: str) -> WorkflowItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: WorkflowItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return WorkflowItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/workflows_request_builder.py b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/workflows_request_builder.py index 6de74d8fbf1..136e1667ac4 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/workflows_request_builder.py +++ b/msgraph_beta/generated/identity_governance/lifecycle_workflows/workflows/workflows_request_builder.py @@ -39,7 +39,6 @@ def by_workflow_id(self,workflow_id: str) -> WorkflowItemRequestBuilder: param workflow_id: The unique identifier of workflow Returns: WorkflowItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if workflow_id is None: raise TypeError("workflow_id cannot be null.") from .item.workflow_item_request_builder import WorkflowItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Workflow Returns: Optional[WorkflowCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-list-workflows?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: Workflow, request_configuration: Optional[RequestConfi Returns: Optional[Workflow] Find more info here: https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-post-workflows?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: Workflow, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> WorkflowsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: WorkflowsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return WorkflowsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/aws_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/aws_request_builder.py index 1f97b6c6b72..3329d70e73f 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/aws_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/aws_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AwsReque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsAnalytics] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: PermissionsAnalytics, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsAnalytics] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: PermissionsAnalytics, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AwsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AwsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AwsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/count/count_request_builder.py index 2bfb50ba222..848d3c9cc04 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/findings_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/findings_request_builder.py index eaf6566c889..944731bcbf2 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/findings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/findings_request_builder.py @@ -39,7 +39,6 @@ def by_finding_id(self,finding_id: str) -> FindingItemRequestBuilder: param finding_id: The unique identifier of finding Returns: FindingItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if finding_id is None: raise TypeError("finding_id cannot be null.") from .item.finding_item_request_builder import FindingItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Findings param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[FindingCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: Finding, request_configuration: Optional[RequestConfig param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Finding] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: Finding, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> FindingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FindingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FindingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/item/finding_item_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/item/finding_item_request_builder.py index 6c2b896d107..38097985d2e 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/item/finding_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/findings/item/finding_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FindingI param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Finding] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: Finding, request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Finding] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: Finding, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> FindingItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FindingItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FindingItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/count/count_request_builder.py index 5082bd2582b..0889cb572f4 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py index 5362b333b00..363d32ce5d8 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Authoriz param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AuthorizationSystem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AuthorizationSystemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AuthorizationSystemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AuthorizationSystemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py index e8fb45e09f3..a844d91d051 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistribution] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: PermissionsCreepIndexDistribution, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistribution] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: PermissionsCreepIndexDistribution, r param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> PermissionsCreepIndexDistributionItemRequestB param raw_url: The raw URL to use for the request builder. Returns: PermissionsCreepIndexDistributionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionsCreepIndexDistributionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py index 382fc57c9cf..7fa7be2ea7d 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/aws/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py @@ -39,7 +39,6 @@ def by_permissions_creep_index_distribution_id(self,permissions_creep_index_dist param permissions_creep_index_distribution_id: The unique identifier of permissionsCreepIndexDistribution Returns: PermissionsCreepIndexDistributionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if permissions_creep_index_distribution_id is None: raise TypeError("permissions_creep_index_distribution_id cannot be null.") from .item.permissions_creep_index_distribution_item_request_builder import PermissionsCreepIndexDistributionItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi Returns: Optional[PermissionsCreepIndexDistributionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/permissionsanalytics-list-permissionscreepindexdistributions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: PermissionsCreepIndexDistribution, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistribution] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: PermissionsCreepIndexDistribution, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> PermissionsCreepIndexDistributionsRequestBuil param raw_url: The raw URL to use for the request builder. Returns: PermissionsCreepIndexDistributionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionsCreepIndexDistributionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/azure_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/azure_request_builder.py index 67a68012613..0d7a2dc3aa0 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/azure_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/azure_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AzureReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsAnalytics] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: PermissionsAnalytics, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsAnalytics] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: PermissionsAnalytics, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AzureRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AzureRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AzureRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/count/count_request_builder.py index ea6246fda53..5c4ac4def91 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/findings_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/findings_request_builder.py index 87d1896ed92..6d153fbae70 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/findings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/findings_request_builder.py @@ -39,7 +39,6 @@ def by_finding_id(self,finding_id: str) -> FindingItemRequestBuilder: param finding_id: The unique identifier of finding Returns: FindingItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if finding_id is None: raise TypeError("finding_id cannot be null.") from .item.finding_item_request_builder import FindingItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Findings param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[FindingCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: Finding, request_configuration: Optional[RequestConfig param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Finding] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: Finding, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> FindingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FindingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FindingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/item/finding_item_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/item/finding_item_request_builder.py index ee4f16a79e5..fd561b821bd 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/item/finding_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/findings/item/finding_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FindingI param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Finding] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: Finding, request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Finding] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: Finding, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> FindingItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FindingItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FindingItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/count/count_request_builder.py index 7bad70cca4d..2e774391813 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py index 00dc8b78b9c..9f7049bd7be 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Authoriz param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AuthorizationSystem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AuthorizationSystemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AuthorizationSystemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AuthorizationSystemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py index e8afd0be0a0..2a3a09dee2f 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistribution] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: PermissionsCreepIndexDistribution, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistribution] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: PermissionsCreepIndexDistribution, r param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> PermissionsCreepIndexDistributionItemRequestB param raw_url: The raw URL to use for the request builder. Returns: PermissionsCreepIndexDistributionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionsCreepIndexDistributionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py index 15cdd8ce662..0c3e0fb1d98 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/azure/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py @@ -39,7 +39,6 @@ def by_permissions_creep_index_distribution_id(self,permissions_creep_index_dist param permissions_creep_index_distribution_id: The unique identifier of permissionsCreepIndexDistribution Returns: PermissionsCreepIndexDistributionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if permissions_creep_index_distribution_id is None: raise TypeError("permissions_creep_index_distribution_id cannot be null.") from .item.permissions_creep_index_distribution_item_request_builder import PermissionsCreepIndexDistributionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistributionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: PermissionsCreepIndexDistribution, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistribution] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: PermissionsCreepIndexDistribution, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> PermissionsCreepIndexDistributionsRequestBuil param raw_url: The raw URL to use for the request builder. Returns: PermissionsCreepIndexDistributionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionsCreepIndexDistributionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/count/count_request_builder.py index 1a2e210e34a..6ffa512456c 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/findings_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/findings_request_builder.py index edffc757692..c6e78d8cdee 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/findings_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/findings_request_builder.py @@ -39,7 +39,6 @@ def by_finding_id(self,finding_id: str) -> FindingItemRequestBuilder: param finding_id: The unique identifier of finding Returns: FindingItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if finding_id is None: raise TypeError("finding_id cannot be null.") from .item.finding_item_request_builder import FindingItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Findings param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[FindingCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: Finding, request_configuration: Optional[RequestConfig param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Finding] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: Finding, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> FindingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FindingsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FindingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/item/finding_item_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/item/finding_item_request_builder.py index ca0a3f0018f..8a01a8e5165 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/item/finding_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/findings/item/finding_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FindingI param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Finding] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: Finding, request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Finding] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: Finding, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> FindingItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FindingItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FindingItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/gcp_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/gcp_request_builder.py index 17e9c1debfc..34ccdc99276 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/gcp_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/gcp_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GcpReque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsAnalytics] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: PermissionsAnalytics, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsAnalytics] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: PermissionsAnalytics, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> GcpRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GcpRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GcpRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/count/count_request_builder.py index b43c353c9a1..6370cf5d9ac 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py index db9e94d38be..80d2e042dd1 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/item/authorization_system/authorization_system_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Authoriz param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AuthorizationSystem] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AuthorizationSystemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AuthorizationSystemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AuthorizationSystemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py index 963af9c68a3..2264e3f920e 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/item/permissions_creep_index_distribution_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistribution] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: PermissionsCreepIndexDistribution, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistribution] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: PermissionsCreepIndexDistribution, r param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> PermissionsCreepIndexDistributionItemRequestB param raw_url: The raw URL to use for the request builder. Returns: PermissionsCreepIndexDistributionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionsCreepIndexDistributionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py index 99e3bd5ba5b..f1992e7baa2 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/gcp/permissions_creep_index_distributions/permissions_creep_index_distributions_request_builder.py @@ -39,7 +39,6 @@ def by_permissions_creep_index_distribution_id(self,permissions_creep_index_dist param permissions_creep_index_distribution_id: The unique identifier of permissionsCreepIndexDistribution Returns: PermissionsCreepIndexDistributionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if permissions_creep_index_distribution_id is None: raise TypeError("permissions_creep_index_distribution_id cannot be null.") from .item.permissions_creep_index_distribution_item_request_builder import PermissionsCreepIndexDistributionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistributionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: PermissionsCreepIndexDistribution, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsCreepIndexDistribution] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: PermissionsCreepIndexDistribution, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> PermissionsCreepIndexDistributionsRequestBuil param raw_url: The raw URL to use for the request builder. Returns: PermissionsCreepIndexDistributionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionsCreepIndexDistributionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_analytics/permissions_analytics_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_analytics/permissions_analytics_request_builder.py index fbaca6edf97..b11fce16737 100644 --- a/msgraph_beta/generated/identity_governance/permissions_analytics/permissions_analytics_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_analytics/permissions_analytics_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsAnalyticsAggregation] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: PermissionsAnalyticsAggregation, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsAnalyticsAggregation] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: PermissionsAnalyticsAggregation, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> PermissionsAnalyticsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PermissionsAnalyticsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionsAnalyticsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/permissions_management_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/permissions_management_request_builder.py index db90ea7e3c5..9bd74f22155 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/permissions_management_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/permissions_management_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsManagement] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: PermissionsManagement, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsManagement] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: PermissionsManagement, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> PermissionsManagementRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PermissionsManagementRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionsManagementRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/count/count_request_builder.py index 09d1b796758..9f2bea7ca37 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/item/permissions_request_change_item_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/item/permissions_request_change_item_request_builder.py index 921cbef6cc7..94ca6abd1ed 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/item/permissions_request_change_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/item/permissions_request_change_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi Returns: Optional[PermissionsRequestChange] Find more info here: https://learn.microsoft.com/graph/api/permissionsrequestchange-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: PermissionsRequestChange, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsRequestChange] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: PermissionsRequestChange, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> PermissionsRequestChangeItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PermissionsRequestChangeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionsRequestChangeItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/permissions_request_changes_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/permissions_request_changes_request_builder.py index 6579978d377..5cb1726ce5e 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/permissions_request_changes_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/permissions_request_changes/permissions_request_changes_request_builder.py @@ -39,7 +39,6 @@ def by_permissions_request_change_id(self,permissions_request_change_id: str) -> param permissions_request_change_id: The unique identifier of permissionsRequestChange Returns: PermissionsRequestChangeItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if permissions_request_change_id is None: raise TypeError("permissions_request_change_id cannot be null.") from .item.permissions_request_change_item_request_builder import PermissionsRequestChangeItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi Returns: Optional[PermissionsRequestChangeCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/permissionsmanagement-list-permissionsrequestchanges?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: PermissionsRequestChange, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionsRequestChange] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: PermissionsRequestChange, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> PermissionsRequestChangesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PermissionsRequestChangesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionsRequestChangesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/count/count_request_builder.py index ab0fd0411e7..f6749e7379b 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 45b3017d98b..33ea5c91e38 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/approval_item_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/approval_item_request_builder.py index 36c04ee5e5b..4a84d1137a9 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/approval_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/approval_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Approval] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: Approval, request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Approval] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: Approval, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> ApprovalItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/count/count_request_builder.py index 08264e36ccf..52977b622a2 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/item/approval_step_item_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/item/approval_step_item_request_builder.py index 2af61542ce7..cde778af61f 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/item/approval_step_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/item/approval_step_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStep] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: ApprovalStep, request_configuration: Optional[Request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStep] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: ApprovalStep, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> ApprovalStepItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalStepItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalStepItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/steps_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/steps_request_builder.py index 8ac449db4c4..46511f39419 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/steps_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/item/steps/steps_request_builder.py @@ -39,7 +39,6 @@ def by_approval_step_id(self,approval_step_id: str) -> ApprovalStepItemRequestBu param approval_step_id: The unique identifier of approvalStep Returns: ApprovalStepItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if approval_step_id is None: raise TypeError("approval_step_id cannot be null.") from .item.approval_step_item_request_builder import ApprovalStepItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[StepsReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStepCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: ApprovalStep, request_configuration: Optional[RequestC param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStep] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: ApprovalStep, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> StepsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StepsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StepsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/scheduled_permissions_approvals_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/scheduled_permissions_approvals_request_builder.py index 28c9849c6d6..dc1b7f6ebda 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/scheduled_permissions_approvals_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_approvals/scheduled_permissions_approvals_request_builder.py @@ -40,7 +40,6 @@ def by_approval_id(self,approval_id: str) -> ApprovalItemRequestBuilder: param approval_id: The unique identifier of approval Returns: ApprovalItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if approval_id is None: raise TypeError("approval_id cannot be null.") from .item.approval_item_request_builder import ApprovalItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -68,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Schedule param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -90,7 +87,6 @@ async def post(self,body: Approval, request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Approval] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: Approval, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> ScheduledPermissionsApprovalsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ScheduledPermissionsApprovalsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ScheduledPermissionsApprovalsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 2a8b34c6e70..92f31ad33aa 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[FilterByCurrentUserWithOnGetResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_requests/scheduled_permissions_requests_request_builder.py b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_requests/scheduled_permissions_requests_request_builder.py index 2816acd2842..d763ccdda9a 100644 --- a/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_requests/scheduled_permissions_requests_request_builder.py +++ b/msgraph_beta/generated/identity_governance/permissions_management/scheduled_permissions_requests/scheduled_permissions_requests_request_builder.py @@ -38,7 +38,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -51,7 +50,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Schedule param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ScheduledPermissionsRequestCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def post(self,body: ScheduledPermissionsRequest, request_configuration: Op Returns: Optional[ScheduledPermissionsRequest] Find more info here: https://learn.microsoft.com/graph/api/permissionsmanagement-post-scheduledpermissionsrequests?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -97,7 +94,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -110,7 +106,6 @@ def to_post_request_information(self,body: ScheduledPermissionsRequest, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -125,7 +120,6 @@ def with_url(self,raw_url: str) -> ScheduledPermissionsRequestsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ScheduledPermissionsRequestsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ScheduledPermissionsRequestsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/assignment_approvals_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/assignment_approvals_request_builder.py index 60787cdfc93..c4eb561e06d 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/assignment_approvals_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/assignment_approvals_request_builder.py @@ -40,7 +40,6 @@ def by_approval_id(self,approval_id: str) -> ApprovalItemRequestBuilder: param approval_id: The unique identifier of approval Returns: ApprovalItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if approval_id is None: raise TypeError("approval_id cannot be null.") from .item.approval_item_request_builder import ApprovalItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -68,7 +66,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Assignme param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -90,7 +87,6 @@ async def post(self,body: Approval, request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Approval] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: Approval, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AssignmentApprovalsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AssignmentApprovalsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AssignmentApprovalsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/count/count_request_builder.py index 307433eadcc..8c323806149 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 0eeba006ab6..7b1b044f602 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/approval_item_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/approval_item_request_builder.py index a72ca55cc7b..3147e74ef7b 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/approval_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/approval_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Approval] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: Approval, request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Approval] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: Approval, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> ApprovalItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/count/count_request_builder.py index fc5a6654477..8358d61e9dc 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/item/approval_step_item_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/item/approval_step_item_request_builder.py index b5518ae2322..078a79e70ed 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/item/approval_step_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/item/approval_step_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStep] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: ApprovalStep, request_configuration: Optional[Request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStep] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: ApprovalStep, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> ApprovalStepItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalStepItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalStepItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/steps_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/steps_request_builder.py index 77bd73aa2b1..6f713425cf2 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/steps_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_approvals/item/steps/steps_request_builder.py @@ -39,7 +39,6 @@ def by_approval_step_id(self,approval_step_id: str) -> ApprovalStepItemRequestBu param approval_step_id: The unique identifier of approvalStep Returns: ApprovalStepItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if approval_step_id is None: raise TypeError("approval_step_id cannot be null.") from .item.approval_step_item_request_builder import ApprovalStepItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[StepsReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStepCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: ApprovalStep, request_configuration: Optional[RequestC param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalStep] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: ApprovalStep, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> StepsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StepsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StepsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/assignment_schedule_instances_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/assignment_schedule_instances_request_builder.py index 439427b7a2d..e28528801d4 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/assignment_schedule_instances_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/assignment_schedule_instances_request_builder.py @@ -40,7 +40,6 @@ def by_privileged_access_group_assignment_schedule_instance_id(self,privileged_a param privileged_access_group_assignment_schedule_instance_id: The unique identifier of privilegedAccessGroupAssignmentScheduleInstance Returns: PrivilegedAccessGroupAssignmentScheduleInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if privileged_access_group_assignment_schedule_instance_id is None: raise TypeError("privileged_access_group_assignment_schedule_instance_id cannot be null.") from .item.privileged_access_group_assignment_schedule_instance_item_request_builder import PrivilegedAccessGroupAssignmentScheduleInstanceItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Assignme Returns: Optional[PrivilegedAccessGroupAssignmentScheduleInstanceCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-assignmentscheduleinstances?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: PrivilegedAccessGroupAssignmentScheduleInstance, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupAssignmentScheduleInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: PrivilegedAccessGroupAssignmentSchedu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AssignmentScheduleInstancesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AssignmentScheduleInstancesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AssignmentScheduleInstancesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/count/count_request_builder.py index f37f46347a7..8edc1f947cd 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 5a0bf6a0b66..b7252d4901b 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/activated_using/activated_using_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/activated_using/activated_using_request_builder.py index 346e79caff1..9e6dafdc636 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/activated_using/activated_using_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/activated_using/activated_using_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Activate param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupEligibilityScheduleInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ActivatedUsingRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ActivatedUsingRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ActivatedUsingRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/group_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/group_request_builder.py index e7e1991ebd0..da7dce8f2bd 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/group_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/group_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GroupReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Group] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GroupRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/service_provisioning_errors/count/count_request_builder.py index 5bde21f8ff5..072f7d846d5 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py index e92dbcc36ad..e0e3579b14b 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/principal/principal_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/principal/principal_request_builder.py index ada71a42329..453289fd86f 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/principal/principal_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/principal/principal_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Principa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> PrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PrincipalRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/privileged_access_group_assignment_schedule_instance_item_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/privileged_access_group_assignment_schedule_instance_item_request_builder.py index 27c2d8ed988..16348569953 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/privileged_access_group_assignment_schedule_instance_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_instances/item/privileged_access_group_assignment_schedule_instance_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Privileg Returns: Optional[PrivilegedAccessGroupAssignmentScheduleInstance] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentscheduleinstance-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: PrivilegedAccessGroupAssignmentScheduleInstance, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupAssignmentScheduleInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: PrivilegedAccessGroupAssignmentSched param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> PrivilegedAccessGroupAssignmentScheduleInstan param raw_url: The raw URL to use for the request builder. Returns: PrivilegedAccessGroupAssignmentScheduleInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrivilegedAccessGroupAssignmentScheduleInstanceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/assignment_schedule_requests_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/assignment_schedule_requests_request_builder.py index 6145d035cac..7e1e206df2e 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/assignment_schedule_requests_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/assignment_schedule_requests_request_builder.py @@ -40,7 +40,6 @@ def by_privileged_access_group_assignment_schedule_request_id(self,privileged_ac param privileged_access_group_assignment_schedule_request_id: The unique identifier of privilegedAccessGroupAssignmentScheduleRequest Returns: PrivilegedAccessGroupAssignmentScheduleRequestItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if privileged_access_group_assignment_schedule_request_id is None: raise TypeError("privileged_access_group_assignment_schedule_request_id cannot be null.") from .item.privileged_access_group_assignment_schedule_request_item_request_builder import PrivilegedAccessGroupAssignmentScheduleRequestItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Assignme Returns: Optional[PrivilegedAccessGroupAssignmentScheduleRequestCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-assignmentschedulerequests?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -92,7 +89,6 @@ async def post(self,body: PrivilegedAccessGroupAssignmentScheduleRequest, reques Returns: Optional[PrivilegedAccessGroupAssignmentScheduleRequest] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroup-post-assignmentschedulerequests?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_post_request_information(self,body: PrivilegedAccessGroupAssignmentSchedu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> AssignmentScheduleRequestsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AssignmentScheduleRequestsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AssignmentScheduleRequestsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/count/count_request_builder.py index 69e9c1466c9..1525f7fd1b6 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index bbc888520ed..5573bb0fa5a 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/activated_using/activated_using_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/activated_using/activated_using_request_builder.py index d48d41dbd45..1c48537be8a 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/activated_using/activated_using_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/activated_using/activated_using_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Activate param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupEligibilitySchedule] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ActivatedUsingRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ActivatedUsingRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ActivatedUsingRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/cancel/cancel_request_builder.py index 8991e4beb61..94e1dc337bb 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/cancel/cancel_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-cancel?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/group_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/group_request_builder.py index 9ebb757a001..76cb86333d5 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/group_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/group_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GroupReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Group] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GroupRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/service_provisioning_errors/count/count_request_builder.py index 6c19ca7d0c7..df2e4d432c1 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py index b3d313edf5d..ae6d2057c4b 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/principal/principal_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/principal/principal_request_builder.py index d088d00b8fc..24d4af553a2 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/principal/principal_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/principal/principal_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Principa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> PrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PrincipalRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/privileged_access_group_assignment_schedule_request_item_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/privileged_access_group_assignment_schedule_request_item_request_builder.py index 8fe1f627409..f099b4c8c24 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/privileged_access_group_assignment_schedule_request_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/privileged_access_group_assignment_schedule_request_item_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Privileg Returns: Optional[PrivilegedAccessGroupAssignmentScheduleRequest] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: PrivilegedAccessGroupAssignmentScheduleRequest, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupAssignmentScheduleRequest] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: PrivilegedAccessGroupAssignmentSched param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> PrivilegedAccessGroupAssignmentScheduleReques param raw_url: The raw URL to use for the request builder. Returns: PrivilegedAccessGroupAssignmentScheduleRequestItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrivilegedAccessGroupAssignmentScheduleRequestItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/target_schedule/target_schedule_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/target_schedule/target_schedule_request_builder.py index fa69c7d0a55..e2d55a67610 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/target_schedule/target_schedule_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedule_requests/item/target_schedule/target_schedule_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TargetSc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupEligibilitySchedule] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TargetScheduleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TargetScheduleRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TargetScheduleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/assignment_schedules_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/assignment_schedules_request_builder.py index 3f09adbb996..9b174c03785 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/assignment_schedules_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/assignment_schedules_request_builder.py @@ -40,7 +40,6 @@ def by_privileged_access_group_assignment_schedule_id(self,privileged_access_gro param privileged_access_group_assignment_schedule_id: The unique identifier of privilegedAccessGroupAssignmentSchedule Returns: PrivilegedAccessGroupAssignmentScheduleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if privileged_access_group_assignment_schedule_id is None: raise TypeError("privileged_access_group_assignment_schedule_id cannot be null.") from .item.privileged_access_group_assignment_schedule_item_request_builder import PrivilegedAccessGroupAssignmentScheduleItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Assignme Returns: Optional[PrivilegedAccessGroupAssignmentScheduleCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-assignmentschedules?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: PrivilegedAccessGroupAssignmentSchedule, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupAssignmentSchedule] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: PrivilegedAccessGroupAssignmentSchedu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AssignmentSchedulesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AssignmentSchedulesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AssignmentSchedulesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/count/count_request_builder.py index 1829660532e..deff25553a7 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 2e529a4ae35..2e42c033861 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedule-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/activated_using/activated_using_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/activated_using/activated_using_request_builder.py index b6592b2758b..2f07282dcfd 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/activated_using/activated_using_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/activated_using/activated_using_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Activate param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupEligibilitySchedule] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ActivatedUsingRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ActivatedUsingRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ActivatedUsingRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/group_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/group_request_builder.py index b1ae6ee4e13..f7b36f6a5d8 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/group_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/group_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GroupReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Group] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GroupRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/service_provisioning_errors/count/count_request_builder.py index f120535e226..72191a30637 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py index 887c7fd7a19..e40dfa180b3 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/principal/principal_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/principal/principal_request_builder.py index d60a73c4244..726c9efd170 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/principal/principal_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/principal/principal_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Principa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> PrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PrincipalRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/privileged_access_group_assignment_schedule_item_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/privileged_access_group_assignment_schedule_item_request_builder.py index 93a7d3b7035..baa00a66984 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/privileged_access_group_assignment_schedule_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/assignment_schedules/item/privileged_access_group_assignment_schedule_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Privileg Returns: Optional[PrivilegedAccessGroupAssignmentSchedule] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedule-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: PrivilegedAccessGroupAssignmentSchedule, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupAssignmentSchedule] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: PrivilegedAccessGroupAssignmentSched param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> PrivilegedAccessGroupAssignmentScheduleItemRe param raw_url: The raw URL to use for the request builder. Returns: PrivilegedAccessGroupAssignmentScheduleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrivilegedAccessGroupAssignmentScheduleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/count/count_request_builder.py index 65941579a8e..29a487731d6 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/eligibility_schedule_instances_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/eligibility_schedule_instances_request_builder.py index 11f8bb801bb..01e3a330009 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/eligibility_schedule_instances_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/eligibility_schedule_instances_request_builder.py @@ -40,7 +40,6 @@ def by_privileged_access_group_eligibility_schedule_instance_id(self,privileged_ param privileged_access_group_eligibility_schedule_instance_id: The unique identifier of privilegedAccessGroupEligibilityScheduleInstance Returns: PrivilegedAccessGroupEligibilityScheduleInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if privileged_access_group_eligibility_schedule_instance_id is None: raise TypeError("privileged_access_group_eligibility_schedule_instance_id cannot be null.") from .item.privileged_access_group_eligibility_schedule_instance_item_request_builder import PrivilegedAccessGroupEligibilityScheduleInstanceItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Eligibil Returns: Optional[PrivilegedAccessGroupEligibilityScheduleInstanceCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-eligibilityscheduleinstances?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: PrivilegedAccessGroupEligibilityScheduleInstance, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupEligibilityScheduleInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: PrivilegedAccessGroupEligibilitySched param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> EligibilityScheduleInstancesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: EligibilityScheduleInstancesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return EligibilityScheduleInstancesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index ad7c7d3efa0..286ca8ce750 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/group_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/group_request_builder.py index 60104e183cf..e9a4ef98a80 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/group_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/group_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GroupReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Group] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GroupRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/service_provisioning_errors/count/count_request_builder.py index bc7a0060e6a..42b38989122 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py index c57bb8c249f..86c316c07c8 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/principal/principal_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/principal/principal_request_builder.py index 639642ef03e..e7354b42249 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/principal/principal_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/principal/principal_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Principa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> PrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PrincipalRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/privileged_access_group_eligibility_schedule_instance_item_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/privileged_access_group_eligibility_schedule_instance_item_request_builder.py index 6c3dc08e503..8c21961eebc 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/privileged_access_group_eligibility_schedule_instance_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_instances/item/privileged_access_group_eligibility_schedule_instance_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Privileg Returns: Optional[PrivilegedAccessGroupEligibilityScheduleInstance] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityscheduleinstance-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: PrivilegedAccessGroupEligibilityScheduleInstance, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupEligibilityScheduleInstance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: PrivilegedAccessGroupEligibilitySche param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> PrivilegedAccessGroupEligibilityScheduleInsta param raw_url: The raw URL to use for the request builder. Returns: PrivilegedAccessGroupEligibilityScheduleInstanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrivilegedAccessGroupEligibilityScheduleInstanceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/count/count_request_builder.py index 31c13d26b52..980f886f055 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/eligibility_schedule_requests_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/eligibility_schedule_requests_request_builder.py index 6d1f148b9bf..38cb8182707 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/eligibility_schedule_requests_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/eligibility_schedule_requests_request_builder.py @@ -40,7 +40,6 @@ def by_privileged_access_group_eligibility_schedule_request_id(self,privileged_a param privileged_access_group_eligibility_schedule_request_id: The unique identifier of privilegedAccessGroupEligibilityScheduleRequest Returns: PrivilegedAccessGroupEligibilityScheduleRequestItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if privileged_access_group_eligibility_schedule_request_id is None: raise TypeError("privileged_access_group_eligibility_schedule_request_id cannot be null.") from .item.privileged_access_group_eligibility_schedule_request_item_request_builder import PrivilegedAccessGroupEligibilityScheduleRequestItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Eligibil Returns: Optional[PrivilegedAccessGroupEligibilityScheduleRequestCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-eligibilityschedulerequests?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -92,7 +89,6 @@ async def post(self,body: PrivilegedAccessGroupEligibilityScheduleRequest, reque Returns: Optional[PrivilegedAccessGroupEligibilityScheduleRequest] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroup-post-eligibilityschedulerequests?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_post_request_information(self,body: PrivilegedAccessGroupEligibilitySched param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> EligibilityScheduleRequestsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: EligibilityScheduleRequestsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return EligibilityScheduleRequestsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index ecc2b877e4b..a4e49d4dad1 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/cancel/cancel_request_builder.py index 75f40045708..a3517be63c4 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/cancel/cancel_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-cancel?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/group_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/group_request_builder.py index 22d89438435..17c04d54d6d 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/group_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/group_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GroupReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Group] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GroupRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/service_provisioning_errors/count/count_request_builder.py index 1ce10c62d28..17b58926e17 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py index 29724035916..37e1dc3debe 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/principal/principal_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/principal/principal_request_builder.py index b41c0b80c30..d18dbc454c4 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/principal/principal_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/principal/principal_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Principa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> PrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PrincipalRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/privileged_access_group_eligibility_schedule_request_item_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/privileged_access_group_eligibility_schedule_request_item_request_builder.py index 57cd5c55965..acc2a791a44 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/privileged_access_group_eligibility_schedule_request_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/privileged_access_group_eligibility_schedule_request_item_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Privileg Returns: Optional[PrivilegedAccessGroupEligibilityScheduleRequest] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: PrivilegedAccessGroupEligibilityScheduleRequest, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupEligibilityScheduleRequest] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: PrivilegedAccessGroupEligibilitySche param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> PrivilegedAccessGroupEligibilityScheduleReque param raw_url: The raw URL to use for the request builder. Returns: PrivilegedAccessGroupEligibilityScheduleRequestItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrivilegedAccessGroupEligibilityScheduleRequestItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/target_schedule/target_schedule_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/target_schedule/target_schedule_request_builder.py index 2f888abcfc0..560739ef3cd 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/target_schedule/target_schedule_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedule_requests/item/target_schedule/target_schedule_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TargetSc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupEligibilitySchedule] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> TargetScheduleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TargetScheduleRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TargetScheduleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/count/count_request_builder.py index 6031df0000e..f72ac5d39c2 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/eligibility_schedules_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/eligibility_schedules_request_builder.py index d34fbf2bc95..739e1620c1b 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/eligibility_schedules_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/eligibility_schedules_request_builder.py @@ -40,7 +40,6 @@ def by_privileged_access_group_eligibility_schedule_id(self,privileged_access_gr param privileged_access_group_eligibility_schedule_id: The unique identifier of privilegedAccessGroupEligibilitySchedule Returns: PrivilegedAccessGroupEligibilityScheduleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if privileged_access_group_eligibility_schedule_id is None: raise TypeError("privileged_access_group_eligibility_schedule_id cannot be null.") from .item.privileged_access_group_eligibility_schedule_item_request_builder import PrivilegedAccessGroupEligibilityScheduleItemRequestBuilder @@ -55,7 +54,6 @@ def filter_by_current_user_with_on(self,on: str) -> FilterByCurrentUserWithOnReq param on: Usage: on='{on}' Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if on is None: raise TypeError("on cannot be null.") from .filter_by_current_user_with_on.filter_by_current_user_with_on_request_builder import FilterByCurrentUserWithOnRequestBuilder @@ -69,7 +67,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Eligibil Returns: Optional[PrivilegedAccessGroupEligibilityScheduleCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-eligibilityschedules?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -91,7 +88,6 @@ async def post(self,body: PrivilegedAccessGroupEligibilitySchedule, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupEligibilitySchedule] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: PrivilegedAccessGroupEligibilitySched param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> EligibilitySchedulesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: EligibilitySchedulesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return EligibilitySchedulesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py index 4e70de092f3..d57ec1d1adc 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/filter_by_current_user_with_on/filter_by_current_user_with_on_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterBy Returns: Optional[FilterByCurrentUserWithOnGetResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedule-filterbycurrentuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> FilterByCurrentUserWithOnRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterByCurrentUserWithOnRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterByCurrentUserWithOnRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/group_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/group_request_builder.py index 843312b6dba..db53d86e021 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/group_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/group_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GroupReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Group] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GroupRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/service_provisioning_errors/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/service_provisioning_errors/count/count_request_builder.py index 8475dc5aff8..58ac30d7f51 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/service_provisioning_errors/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/service_provisioning_errors/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py index 71928611c0c..4d8c3d3ba94 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/group/service_provisioning_errors/service_provisioning_errors_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceProvisioningErrorCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ServiceProvisioningErrorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceProvisioningErrorsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceProvisioningErrorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/principal/principal_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/principal/principal_request_builder.py index 6856e763a97..242be4f9adc 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/principal/principal_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/principal/principal_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Principa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> PrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PrincipalRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/privileged_access_group_eligibility_schedule_item_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/privileged_access_group_eligibility_schedule_item_request_builder.py index db48c193dfb..8b297049a75 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/privileged_access_group_eligibility_schedule_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/eligibility_schedules/item/privileged_access_group_eligibility_schedule_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Privileg Returns: Optional[PrivilegedAccessGroupEligibilitySchedule] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedule-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: PrivilegedAccessGroupEligibilitySchedule, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroupEligibilitySchedule] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: PrivilegedAccessGroupEligibilitySche param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> PrivilegedAccessGroupEligibilityScheduleItemR param raw_url: The raw URL to use for the request builder. Returns: PrivilegedAccessGroupEligibilityScheduleItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrivilegedAccessGroupEligibilityScheduleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/group_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/group_request_builder.py index 5d3888ee3d5..d4677ac92b5 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/group_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/group_request_builder.py @@ -44,7 +44,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -63,7 +62,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GroupReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroup] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -85,7 +83,6 @@ async def patch(self,body: PrivilegedAccessGroup, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessGroup] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -108,7 +105,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -120,7 +116,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -133,7 +128,6 @@ def to_patch_request_information(self,body: PrivilegedAccessGroup, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -148,7 +142,6 @@ def with_url(self,raw_url: str) -> GroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GroupRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/resources/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/resources/count/count_request_builder.py index a9e9aefd523..66ddc36ecdf 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/resources/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/resources/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/resources/item/group_resource_item_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/resources/item/group_resource_item_request_builder.py index 49adf1dd65d..1e013093ac1 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/resources/item/group_resource_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/resources/item/group_resource_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GroupRes Returns: Optional[GroupResource] Find more info here: https://learn.microsoft.com/graph/api/groupresource-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: GroupResource, request_configuration: Optional[Reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GroupResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: GroupResource, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> GroupResourceItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GroupResourceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GroupResourceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/group/resources/resources_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/group/resources/resources_request_builder.py index bf24666b271..907f946fbfb 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/group/resources/resources_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/group/resources/resources_request_builder.py @@ -39,7 +39,6 @@ def by_group_resource_id(self,group_resource_id: str) -> GroupResourceItemReques param group_resource_id: The unique identifier of groupResource Returns: GroupResourceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if group_resource_id is None: raise TypeError("group_resource_id cannot be null.") from .item.group_resource_item_request_builder import GroupResourceItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Resource Returns: Optional[GroupResourceCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-resources?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: GroupResource, request_configuration: Optional[Request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GroupResource] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: GroupResource, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> ResourcesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ResourcesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ResourcesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/privileged_access/privileged_access_request_builder.py b/msgraph_beta/generated/identity_governance/privileged_access/privileged_access_request_builder.py index 94afd6231f9..d4191ae68f8 100644 --- a/msgraph_beta/generated/identity_governance/privileged_access/privileged_access_request_builder.py +++ b/msgraph_beta/generated/identity_governance/privileged_access/privileged_access_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Privileg param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessRoot] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: PrivilegedAccessRoot, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PrivilegedAccessRoot] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: PrivilegedAccessRoot, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> PrivilegedAccessRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PrivilegedAccessRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PrivilegedAccessRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/alert_configurations_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/alert_configurations_request_builder.py index 3700514a669..38d4c5853da 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/alert_configurations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/alert_configurations_request_builder.py @@ -39,7 +39,6 @@ def by_unified_role_management_alert_configuration_id(self,unified_role_manageme param unified_role_management_alert_configuration_id: The unique identifier of unifiedRoleManagementAlertConfiguration Returns: UnifiedRoleManagementAlertConfigurationItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if unified_role_management_alert_configuration_id is None: raise TypeError("unified_role_management_alert_configuration_id cannot be null.") from .item.unified_role_management_alert_configuration_item_request_builder import UnifiedRoleManagementAlertConfigurationItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AlertCon Returns: Optional[UnifiedRoleManagementAlertConfigurationCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/rolemanagementalert-list-alertconfigurations?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: UnifiedRoleManagementAlertConfiguration, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertConfiguration] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: UnifiedRoleManagementAlertConfigurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> AlertConfigurationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AlertConfigurationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AlertConfigurationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/count/count_request_builder.py index 3248f25df39..db015b5c014 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/item/alert_definition/alert_definition_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/item/alert_definition/alert_definition_request_builder.py index 6ddc165c36e..4b70157f8f1 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/item/alert_definition/alert_definition_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/item/alert_definition/alert_definition_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AlertDef param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AlertDefinitionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AlertDefinitionRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AlertDefinitionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/item/unified_role_management_alert_configuration_item_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/item/unified_role_management_alert_configuration_item_request_builder.py index d851e553775..2af31712f1f 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/item/unified_role_management_alert_configuration_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_configurations/item/unified_role_management_alert_configuration_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UnifiedR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertConfiguration] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: UnifiedRoleManagementAlertConfiguration, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertConfiguration] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: UnifiedRoleManagementAlertConfigurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> UnifiedRoleManagementAlertConfigurationItemRe param raw_url: The raw URL to use for the request builder. Returns: UnifiedRoleManagementAlertConfigurationItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UnifiedRoleManagementAlertConfigurationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/alert_definitions_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/alert_definitions_request_builder.py index 476901665fa..50462978263 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/alert_definitions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/alert_definitions_request_builder.py @@ -39,7 +39,6 @@ def by_unified_role_management_alert_definition_id(self,unified_role_management_ param unified_role_management_alert_definition_id: The unique identifier of unifiedRoleManagementAlertDefinition Returns: UnifiedRoleManagementAlertDefinitionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if unified_role_management_alert_definition_id is None: raise TypeError("unified_role_management_alert_definition_id cannot be null.") from .item.unified_role_management_alert_definition_item_request_builder import UnifiedRoleManagementAlertDefinitionItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AlertDef Returns: Optional[UnifiedRoleManagementAlertDefinitionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/rolemanagementalert-list-alertdefinitions?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: UnifiedRoleManagementAlertDefinition, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: UnifiedRoleManagementAlertDefinition, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> AlertDefinitionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AlertDefinitionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AlertDefinitionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/count/count_request_builder.py index c9f67b4a65b..0ba960e3a78 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/item/unified_role_management_alert_definition_item_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/item/unified_role_management_alert_definition_item_request_builder.py index 2ea6bc63bb9..fa7ccba7b8b 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/item/unified_role_management_alert_definition_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alert_definitions/item/unified_role_management_alert_definition_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UnifiedR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: UnifiedRoleManagementAlertDefinition, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: UnifiedRoleManagementAlertDefinition param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> UnifiedRoleManagementAlertDefinitionItemReque param raw_url: The raw URL to use for the request builder. Returns: UnifiedRoleManagementAlertDefinitionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UnifiedRoleManagementAlertDefinitionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/alerts_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/alerts_request_builder.py index e15b93f83a8..2275ded95fe 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/alerts_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/alerts_request_builder.py @@ -40,7 +40,6 @@ def by_unified_role_management_alert_id(self,unified_role_management_alert_id: s param unified_role_management_alert_id: The unique identifier of unifiedRoleManagementAlert Returns: UnifiedRoleManagementAlertItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if unified_role_management_alert_id is None: raise TypeError("unified_role_management_alert_id cannot be null.") from .item.unified_role_management_alert_item_request_builder import UnifiedRoleManagementAlertItemRequestBuilder @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AlertsRe Returns: Optional[UnifiedRoleManagementAlertCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/rolemanagementalert-list-alerts?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: UnifiedRoleManagementAlert, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlert] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: UnifiedRoleManagementAlert, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> AlertsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AlertsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AlertsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/count/count_request_builder.py index 022ef91b4f9..3ca96b8b600 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_configuration/alert_configuration_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_configuration/alert_configuration_request_builder.py index ba02550d950..3704b4498ab 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_configuration/alert_configuration_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_configuration/alert_configuration_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AlertCon param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertConfiguration] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AlertConfigurationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AlertConfigurationRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AlertConfigurationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_definition/alert_definition_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_definition/alert_definition_request_builder.py index 68058276706..7a1f2fe46f8 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_definition/alert_definition_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_definition/alert_definition_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AlertDef param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertDefinition] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AlertDefinitionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AlertDefinitionRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AlertDefinitionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/alert_incidents_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/alert_incidents_request_builder.py index 5893b73f5ae..ba860d7fc23 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/alert_incidents_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/alert_incidents_request_builder.py @@ -39,7 +39,6 @@ def by_unified_role_management_alert_incident_id(self,unified_role_management_al param unified_role_management_alert_incident_id: The unique identifier of unifiedRoleManagementAlertIncident Returns: UnifiedRoleManagementAlertIncidentItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if unified_role_management_alert_incident_id is None: raise TypeError("unified_role_management_alert_incident_id cannot be null.") from .item.unified_role_management_alert_incident_item_request_builder import UnifiedRoleManagementAlertIncidentItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AlertInc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertIncidentCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: UnifiedRoleManagementAlertIncident, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertIncident] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: UnifiedRoleManagementAlertIncident, r param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AlertIncidentsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AlertIncidentsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AlertIncidentsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/count/count_request_builder.py index cb1a5a61d53..12297deb464 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/item/remediate/remediate_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/item/remediate/remediate_request_builder.py index 46cfa811f93..fd106d8614e 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/item/remediate/remediate_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/item/remediate/remediate_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> RemediateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RemediateRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RemediateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/item/unified_role_management_alert_incident_item_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/item/unified_role_management_alert_incident_item_request_builder.py index ef6f162f56d..9bdd976e59c 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/item/unified_role_management_alert_incident_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/alert_incidents/item/unified_role_management_alert_incident_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UnifiedR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertIncident] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: UnifiedRoleManagementAlertIncident, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlertIncident] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: UnifiedRoleManagementAlertIncident, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> UnifiedRoleManagementAlertIncidentItemRequest param raw_url: The raw URL to use for the request builder. Returns: UnifiedRoleManagementAlertIncidentItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UnifiedRoleManagementAlertIncidentItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/refresh/refresh_request_builder.py index d304cd27f95..e2c59eac689 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/refresh/refresh_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/unified_role_management_alert_item_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/unified_role_management_alert_item_request_builder.py index 0049848111d..97e96bf1349 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/unified_role_management_alert_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/item/unified_role_management_alert_item_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UnifiedR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlert] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: UnifiedRoleManagementAlert, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UnifiedRoleManagementAlert] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: UnifiedRoleManagementAlert, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> UnifiedRoleManagementAlertItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UnifiedRoleManagementAlertItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UnifiedRoleManagementAlertItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/refresh/refresh_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/refresh/refresh_request_builder.py index 9c5f9883cf6..759803e68e4 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/refresh/refresh_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/alerts/refresh/refresh_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RefreshPostRequestBody, request_configuration: Optiona Returns: None Find more info here: https://learn.microsoft.com/graph/api/unifiedrolemanagementalert-refresh?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RefreshPostRequestBody, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RefreshRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefreshRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefreshRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/operations/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/operations/count/count_request_builder.py index c58de26af56..650bc9e3d99 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/operations/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/operations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/operations/item/long_running_operation_item_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/operations/item/long_running_operation_item_request_builder.py index 4a485700c15..7440d11bc67 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/operations/item/long_running_operation_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/operations/item/long_running_operation_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[LongRunn param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[LongRunningOperation] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: LongRunningOperation, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[LongRunningOperation] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: LongRunningOperation, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> LongRunningOperationItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LongRunningOperationItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LongRunningOperationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/operations/operations_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/operations/operations_request_builder.py index 59d0212e69e..a021b98afa8 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/operations/operations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/operations/operations_request_builder.py @@ -39,7 +39,6 @@ def by_long_running_operation_id(self,long_running_operation_id: str) -> LongRun param long_running_operation_id: The unique identifier of longRunningOperation Returns: LongRunningOperationItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if long_running_operation_id is None: raise TypeError("long_running_operation_id cannot be null.") from .item.long_running_operation_item_request_builder import LongRunningOperationItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Operatio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[LongRunningOperationCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: LongRunningOperation, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[LongRunningOperation] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: LongRunningOperation, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> OperationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: OperationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OperationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/role_management_alerts/role_management_alerts_request_builder.py b/msgraph_beta/generated/identity_governance/role_management_alerts/role_management_alerts_request_builder.py index db554fd7a11..5f50cb74794 100644 --- a/msgraph_beta/generated/identity_governance/role_management_alerts/role_management_alerts_request_builder.py +++ b/msgraph_beta/generated/identity_governance/role_management_alerts/role_management_alerts_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RoleMana param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RoleManagementAlert] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: RoleManagementAlert, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RoleManagementAlert] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: RoleManagementAlert, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> RoleManagementAlertsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RoleManagementAlertsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RoleManagementAlertsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/agreement_acceptances_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/agreement_acceptances_request_builder.py index a56f45a7e41..f08f5f61df7 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/agreement_acceptances_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/agreement_acceptances_request_builder.py @@ -39,7 +39,6 @@ def by_agreement_acceptance_id(self,agreement_acceptance_id: str) -> AgreementAc param agreement_acceptance_id: The unique identifier of agreementAcceptance Returns: AgreementAcceptanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if agreement_acceptance_id is None: raise TypeError("agreement_acceptance_id cannot be null.") from .item.agreement_acceptance_item_request_builder import AgreementAcceptanceItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Agreemen param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementAcceptanceCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AgreementAcceptance, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementAcceptance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AgreementAcceptance, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AgreementAcceptancesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AgreementAcceptancesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AgreementAcceptancesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/count/count_request_builder.py index 81d533d0f64..d12585747c6 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/item/agreement_acceptance_item_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/item/agreement_acceptance_item_request_builder.py index 3077972dd93..32ae86a94e9 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/item/agreement_acceptance_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreement_acceptances/item/agreement_acceptance_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Agreemen param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementAcceptance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AgreementAcceptance, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementAcceptance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AgreementAcceptance, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AgreementAcceptanceItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AgreementAcceptanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AgreementAcceptanceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/agreements_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/agreements_request_builder.py index bbf968c64da..61ed1e333d4 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/agreements_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/agreements_request_builder.py @@ -39,7 +39,6 @@ def by_agreement_id(self,agreement_id: str) -> AgreementItemRequestBuilder: param agreement_id: The unique identifier of agreement Returns: AgreementItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if agreement_id is None: raise TypeError("agreement_id cannot be null.") from .item.agreement_item_request_builder import AgreementItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Agreemen Returns: Optional[AgreementCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/termsofusecontainer-list-agreements?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: Agreement, request_configuration: Optional[RequestConf Returns: Optional[Agreement] Find more info here: https://learn.microsoft.com/graph/api/termsofusecontainer-post-agreements?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: Agreement, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> AgreementsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AgreementsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AgreementsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/count/count_request_builder.py index 27aa2e6e05d..c7dcca9563e 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/acceptances_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/acceptances_request_builder.py index 48f0a62bc26..7a1e26eaa05 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/acceptances_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/acceptances_request_builder.py @@ -39,7 +39,6 @@ def by_agreement_acceptance_id(self,agreement_acceptance_id: str) -> AgreementAc param agreement_acceptance_id: The unique identifier of agreementAcceptance Returns: AgreementAcceptanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if agreement_acceptance_id is None: raise TypeError("agreement_acceptance_id cannot be null.") from .item.agreement_acceptance_item_request_builder import AgreementAcceptanceItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Acceptan Returns: Optional[AgreementAcceptanceCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/agreement-list-acceptances?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: AgreementAcceptance, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementAcceptance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: AgreementAcceptance, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> AcceptancesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AcceptancesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AcceptancesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/count/count_request_builder.py index d42f4efdb96..e9bebe262a0 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/item/agreement_acceptance_item_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/item/agreement_acceptance_item_request_builder.py index 5c6ae8e227f..9f54cedebed 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/item/agreement_acceptance_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/acceptances/item/agreement_acceptance_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Agreemen param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementAcceptance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AgreementAcceptance, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementAcceptance] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AgreementAcceptance, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AgreementAcceptanceItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AgreementAcceptanceItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AgreementAcceptanceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/agreement_item_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/agreement_item_request_builder.py index 7443eef5c63..9de9cb10c00 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/agreement_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/agreement_item_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/agreement-delete?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Agreemen Returns: Optional[Agreement] Find more info here: https://learn.microsoft.com/graph/api/agreement-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: Agreement, request_configuration: Optional[RequestCon Returns: Optional[Agreement] Find more info here: https://learn.microsoft.com/graph/api/agreement-update?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: Agreement, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> AgreementItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AgreementItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AgreementItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/file_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/file_request_builder.py index e160c65e9ef..8d0cd03a987 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/file_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/file_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FileRequ Returns: Optional[AgreementFile] Find more info here: https://learn.microsoft.com/graph/api/agreementfile-get?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AgreementFile, request_configuration: Optional[Reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFile] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AgreementFile, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> FileRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FileRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FileRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/count/count_request_builder.py index 056240f3dcb..9bc8f7736e2 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/agreement_file_localization_item_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/agreement_file_localization_item_request_builder.py index 2462e3569b2..d837ad1d27d 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/agreement_file_localization_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/agreement_file_localization_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Agreemen param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileLocalization] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AgreementFileLocalization, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileLocalization] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AgreementFileLocalization, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AgreementFileLocalizationItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AgreementFileLocalizationItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AgreementFileLocalizationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/count/count_request_builder.py index ba52117d4f6..ef1179f6d81 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/item/agreement_file_version_item_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/item/agreement_file_version_item_request_builder.py index ea30dbbb7f8..9a8de009f76 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/item/agreement_file_version_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/item/agreement_file_version_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Agreemen param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileVersion] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AgreementFileVersion, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileVersion] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AgreementFileVersion, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AgreementFileVersionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AgreementFileVersionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AgreementFileVersionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/versions_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/versions_request_builder.py index 0e0397e9867..f3f052f4eac 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/versions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/item/versions/versions_request_builder.py @@ -39,7 +39,6 @@ def by_agreement_file_version_id(self,agreement_file_version_id: str) -> Agreeme param agreement_file_version_id: The unique identifier of agreementFileVersion Returns: AgreementFileVersionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if agreement_file_version_id is None: raise TypeError("agreement_file_version_id cannot be null.") from .item.agreement_file_version_item_request_builder import AgreementFileVersionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Versions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileVersionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AgreementFileVersion, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileVersion] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AgreementFileVersion, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> VersionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VersionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VersionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/localizations_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/localizations_request_builder.py index 6fdd0ee2fa7..e75d4bfa67f 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/localizations_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/file/localizations/localizations_request_builder.py @@ -39,7 +39,6 @@ def by_agreement_file_localization_id(self,agreement_file_localization_id: str) param agreement_file_localization_id: The unique identifier of agreementFileLocalization Returns: AgreementFileLocalizationItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if agreement_file_localization_id is None: raise TypeError("agreement_file_localization_id cannot be null.") from .item.agreement_file_localization_item_request_builder import AgreementFileLocalizationItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Localiza param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileLocalizationCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AgreementFileLocalization, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileLocalization] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AgreementFileLocalization, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> LocalizationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LocalizationsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LocalizationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/count/count_request_builder.py index a02c606b506..4913252cde8 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/files_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/files_request_builder.py index 1e5e5edf237..30dfec6621b 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/files_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/files_request_builder.py @@ -39,7 +39,6 @@ def by_agreement_file_localization_id(self,agreement_file_localization_id: str) param agreement_file_localization_id: The unique identifier of agreementFileLocalization Returns: AgreementFileLocalizationItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if agreement_file_localization_id is None: raise TypeError("agreement_file_localization_id cannot be null.") from .item.agreement_file_localization_item_request_builder import AgreementFileLocalizationItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilesReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileLocalizationCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: AgreementFileLocalization, request_configuration: Opti Returns: Optional[AgreementFileLocalization] Find more info here: https://learn.microsoft.com/graph/api/agreement-post-files?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: AgreementFileLocalization, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> FilesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilesRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/agreement_file_localization_item_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/agreement_file_localization_item_request_builder.py index f9c66cde90f..aa739a0dc31 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/agreement_file_localization_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/agreement_file_localization_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Agreemen param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileLocalization] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: AgreementFileLocalization, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileLocalization] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: AgreementFileLocalization, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> AgreementFileLocalizationItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AgreementFileLocalizationItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AgreementFileLocalizationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/count/count_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/count/count_request_builder.py index 13f65bdf915..7cc0ec3f20e 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/count/count_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/item/agreement_file_version_item_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/item/agreement_file_version_item_request_builder.py index a1c7640d5a8..808d7be7a2f 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/item/agreement_file_version_item_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/item/agreement_file_version_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Agreemen param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileVersion] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AgreementFileVersion, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileVersion] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AgreementFileVersion, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AgreementFileVersionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AgreementFileVersionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AgreementFileVersionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/versions_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/versions_request_builder.py index 79eef77b992..0fe9dbb03f1 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/versions_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/agreements/item/files/item/versions/versions_request_builder.py @@ -39,7 +39,6 @@ def by_agreement_file_version_id(self,agreement_file_version_id: str) -> Agreeme param agreement_file_version_id: The unique identifier of agreementFileVersion Returns: AgreementFileVersionItemRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if agreement_file_version_id is None: raise TypeError("agreement_file_version_id cannot be null.") from .item.agreement_file_version_item_request_builder import AgreementFileVersionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Versions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileVersionCollectionResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AgreementFileVersion, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AgreementFileVersion] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AgreementFileVersion, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> VersionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VersionsRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VersionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/identity_governance/terms_of_use/terms_of_use_request_builder.py b/msgraph_beta/generated/identity_governance/terms_of_use/terms_of_use_request_builder.py index 2670eaa48da..aab75e59ab1 100644 --- a/msgraph_beta/generated/identity_governance/terms_of_use/terms_of_use_request_builder.py +++ b/msgraph_beta/generated/identity_governance/terms_of_use/terms_of_use_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TermsOfU param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TermsOfUseContainer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: TermsOfUseContainer, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TermsOfUseContainer] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: TermsOfUseContainer, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> TermsOfUseRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TermsOfUseRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TermsOfUseRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/kiota-dom-export.txt b/msgraph_beta/generated/kiota-dom-export.txt index a9062a268d1..38a1d22365b 100644 --- a/msgraph_beta/generated/kiota-dom-export.txt +++ b/msgraph_beta/generated/kiota-dom-export.txt @@ -8919,25 +8919,6 @@ msgraph_beta.generated.app.calls.item.operations.OperationsRequestBuilder::|publ msgraph_beta.generated.app.calls.item.operations.OperationsRequestBuilder::|public|to_post_request_information(body:CommsOperation; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.app.calls.item.operations.OperationsRequestBuilder::|public|url_template:str msgraph_beta.generated.app.calls.item.operations.OperationsRequestBuilder::|public|with_url(raw_url:str):OperationsRequestBuilder -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|additional_data():dict[str, Any] -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|additional_data(value:dict[str, Any]):None -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|backing_store:BackingStore -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|client_context():str -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|client_context(value:str):None -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|constructor():None -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|static|public|create_from_discriminator_value(parse_node:ParseNode):AdmitAllFromLobbyPostRequestBody -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder.AdmitAllFromLobbyRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|post(body:AdmitAllFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):AdmitAllFromLobbyOperation -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|to_post_request_information(body:AdmitAllFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|url_template:str -msgraph_beta.generated.app.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|with_url(raw_url:str):AdmitAllFromLobbyRequestBuilder msgraph_beta.generated.app.calls.item.participants.count.CountRequestBuilder-->BaseRequestBuilder msgraph_beta.generated.app.calls.item.participants.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str msgraph_beta.generated.app.calls.item.participants.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str @@ -8971,25 +8952,6 @@ msgraph_beta.generated.app.calls.item.participants.invite.InviteRequestBuilder:: msgraph_beta.generated.app.calls.item.participants.invite.InviteRequestBuilder::|public|to_post_request_information(body:InvitePostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.app.calls.item.participants.invite.InviteRequestBuilder::|public|url_template:str msgraph_beta.generated.app.calls.item.participants.invite.InviteRequestBuilder::|public|with_url(raw_url:str):InviteRequestBuilder -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|additional_data():dict[str, Any] -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|additional_data(value:dict[str, Any]):None -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|backing_store:BackingStore -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|client_context():str -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|client_context(value:str):None -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|constructor():None -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|static|public|create_from_discriminator_value(parse_node:ParseNode):AdmitFromLobbyPostRequestBody -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder.AdmitFromLobbyRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|post(body:AdmitFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):AdmitFromLobbyOperation -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|to_post_request_information(body:AdmitFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|url_template:str -msgraph_beta.generated.app.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|with_url(raw_url:str):AdmitFromLobbyRequestBuilder msgraph_beta.generated.app.calls.item.participants.item.mute.MutePostRequestBody::|public|additional_data():dict[str, Any] msgraph_beta.generated.app.calls.item.participants.item.mute.MutePostRequestBody::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.app.calls.item.participants.item.mute.MutePostRequestBody::|public|backing_store:BackingStore @@ -9016,14 +8978,12 @@ msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBu msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder.ParticipantItemRequestBuilderGetQueryParameters::|public|select:list[str] msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder.ParticipantItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[ParticipantItemRequestBuilderGetQueryParameters] msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder.ParticipantItemRequestBuilderPatchRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|admit_from_lobby:AdmitFromLobbyRequestBuilder msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|delete(request_configuration?:RequestConfiguration[QueryParameters]):None msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[ParticipantItemRequestBuilderGetQueryParameters]):Participant msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|mute:MuteRequestBuilder msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|patch(body:Participant; request_configuration?:RequestConfiguration[QueryParameters]):Participant msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|remove_from_lobby:RemoveFromLobbyRequestBuilder msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|report_synthetic_media:ReportSyntheticMediaRequestBuilder msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|request_adapter:RequestAdapter msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|start_hold_music:StartHoldMusicRequestBuilder @@ -9033,25 +8993,6 @@ msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBu msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|to_patch_request_information(body:Participant; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|url_template:str msgraph_beta.generated.app.calls.item.participants.item.ParticipantItemRequestBuilder::|public|with_url(raw_url:str):ParticipantItemRequestBuilder -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|additional_data():dict[str, Any] -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|additional_data(value:dict[str, Any]):None -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|backing_store:BackingStore -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|client_context():str -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|client_context(value:str):None -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|constructor():None -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|static|public|create_from_discriminator_value(parse_node:ParseNode):RemoveFromLobbyPostRequestBody -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder.RemoveFromLobbyRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|post(body:RemoveFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RemoveFromLobbyOperation -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|to_post_request_information(body:RemoveFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|url_template:str -msgraph_beta.generated.app.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|with_url(raw_url:str):RemoveFromLobbyRequestBuilder msgraph_beta.generated.app.calls.item.participants.item.reportSyntheticMedia.ReportSyntheticMediaPostRequestBody::|public|additional_data():dict[str, Any] msgraph_beta.generated.app.calls.item.participants.item.reportSyntheticMedia.ReportSyntheticMediaPostRequestBody::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.app.calls.item.participants.item.reportSyntheticMedia.ReportSyntheticMediaPostRequestBody::|public|backing_store:BackingStore @@ -9156,7 +9097,6 @@ msgraph_beta.generated.app.calls.item.participants.ParticipantsRequestBuilder.Pa msgraph_beta.generated.app.calls.item.participants.ParticipantsRequestBuilder.ParticipantsRequestBuilderGetQueryParameters::|public|top:int msgraph_beta.generated.app.calls.item.participants.ParticipantsRequestBuilder.ParticipantsRequestBuilderGetRequestConfiguration-->RequestConfiguration[ParticipantsRequestBuilderGetQueryParameters] msgraph_beta.generated.app.calls.item.participants.ParticipantsRequestBuilder.ParticipantsRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.app.calls.item.participants.ParticipantsRequestBuilder::|public|admit_all_from_lobby:AdmitAllFromLobbyRequestBuilder msgraph_beta.generated.app.calls.item.participants.ParticipantsRequestBuilder::|public|by_participant_id(participant_id:str):ParticipantItemRequestBuilder msgraph_beta.generated.app.calls.item.participants.ParticipantsRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None msgraph_beta.generated.app.calls.item.participants.ParticipantsRequestBuilder::|public|count:CountRequestBuilder @@ -17575,25 +17515,6 @@ msgraph_beta.generated.communications.calls.item.operations.OperationsRequestBui msgraph_beta.generated.communications.calls.item.operations.OperationsRequestBuilder::|public|to_post_request_information(body:CommsOperation; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.communications.calls.item.operations.OperationsRequestBuilder::|public|url_template:str msgraph_beta.generated.communications.calls.item.operations.OperationsRequestBuilder::|public|with_url(raw_url:str):OperationsRequestBuilder -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|additional_data():dict[str, Any] -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|additional_data(value:dict[str, Any]):None -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|backing_store:BackingStore -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|client_context():str -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|client_context(value:str):None -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|constructor():None -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody::|static|public|create_from_discriminator_value(parse_node:ParseNode):AdmitAllFromLobbyPostRequestBody -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyPostRequestBody~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder.AdmitAllFromLobbyRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|post(body:AdmitAllFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):AdmitAllFromLobbyOperation -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|to_post_request_information(body:AdmitAllFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|url_template:str -msgraph_beta.generated.communications.calls.item.participants.admitAllFromLobby.AdmitAllFromLobbyRequestBuilder::|public|with_url(raw_url:str):AdmitAllFromLobbyRequestBuilder msgraph_beta.generated.communications.calls.item.participants.count.CountRequestBuilder-->BaseRequestBuilder msgraph_beta.generated.communications.calls.item.participants.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str msgraph_beta.generated.communications.calls.item.participants.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str @@ -17627,25 +17548,6 @@ msgraph_beta.generated.communications.calls.item.participants.invite.InviteReque msgraph_beta.generated.communications.calls.item.participants.invite.InviteRequestBuilder::|public|to_post_request_information(body:InvitePostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.communications.calls.item.participants.invite.InviteRequestBuilder::|public|url_template:str msgraph_beta.generated.communications.calls.item.participants.invite.InviteRequestBuilder::|public|with_url(raw_url:str):InviteRequestBuilder -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|additional_data():dict[str, Any] -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|additional_data(value:dict[str, Any]):None -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|backing_store:BackingStore -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|client_context():str -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|client_context(value:str):None -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|constructor():None -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody::|static|public|create_from_discriminator_value(parse_node:ParseNode):AdmitFromLobbyPostRequestBody -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyPostRequestBody~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder.AdmitFromLobbyRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|post(body:AdmitFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):AdmitFromLobbyOperation -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|to_post_request_information(body:AdmitFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|url_template:str -msgraph_beta.generated.communications.calls.item.participants.item.admitFromLobby.AdmitFromLobbyRequestBuilder::|public|with_url(raw_url:str):AdmitFromLobbyRequestBuilder msgraph_beta.generated.communications.calls.item.participants.item.mute.MutePostRequestBody::|public|additional_data():dict[str, Any] msgraph_beta.generated.communications.calls.item.participants.item.mute.MutePostRequestBody::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.communications.calls.item.participants.item.mute.MutePostRequestBody::|public|backing_store:BackingStore @@ -17672,14 +17574,12 @@ msgraph_beta.generated.communications.calls.item.participants.item.ParticipantIt msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder.ParticipantItemRequestBuilderGetQueryParameters::|public|select:list[str] msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder.ParticipantItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[ParticipantItemRequestBuilderGetQueryParameters] msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder.ParticipantItemRequestBuilderPatchRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|admit_from_lobby:AdmitFromLobbyRequestBuilder msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|delete(request_configuration?:RequestConfiguration[QueryParameters]):None msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[ParticipantItemRequestBuilderGetQueryParameters]):Participant msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|mute:MuteRequestBuilder msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|patch(body:Participant; request_configuration?:RequestConfiguration[QueryParameters]):Participant msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|remove_from_lobby:RemoveFromLobbyRequestBuilder msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|report_synthetic_media:ReportSyntheticMediaRequestBuilder msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|request_adapter:RequestAdapter msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|start_hold_music:StartHoldMusicRequestBuilder @@ -17689,25 +17589,6 @@ msgraph_beta.generated.communications.calls.item.participants.item.ParticipantIt msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|to_patch_request_information(body:Participant; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|url_template:str msgraph_beta.generated.communications.calls.item.participants.item.ParticipantItemRequestBuilder::|public|with_url(raw_url:str):ParticipantItemRequestBuilder -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|additional_data():dict[str, Any] -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|additional_data(value:dict[str, Any]):None -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|backing_store:BackingStore -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|client_context():str -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|client_context(value:str):None -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|constructor():None -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody::|static|public|create_from_discriminator_value(parse_node:ParseNode):RemoveFromLobbyPostRequestBody -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyPostRequestBody~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder.RemoveFromLobbyRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|post(body:RemoveFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RemoveFromLobbyOperation -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|to_post_request_information(body:RemoveFromLobbyPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|url_template:str -msgraph_beta.generated.communications.calls.item.participants.item.removeFromLobby.RemoveFromLobbyRequestBuilder::|public|with_url(raw_url:str):RemoveFromLobbyRequestBuilder msgraph_beta.generated.communications.calls.item.participants.item.reportSyntheticMedia.ReportSyntheticMediaPostRequestBody::|public|additional_data():dict[str, Any] msgraph_beta.generated.communications.calls.item.participants.item.reportSyntheticMedia.ReportSyntheticMediaPostRequestBody::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.communications.calls.item.participants.item.reportSyntheticMedia.ReportSyntheticMediaPostRequestBody::|public|backing_store:BackingStore @@ -17812,7 +17693,6 @@ msgraph_beta.generated.communications.calls.item.participants.ParticipantsReques msgraph_beta.generated.communications.calls.item.participants.ParticipantsRequestBuilder.ParticipantsRequestBuilderGetQueryParameters::|public|top:int msgraph_beta.generated.communications.calls.item.participants.ParticipantsRequestBuilder.ParticipantsRequestBuilderGetRequestConfiguration-->RequestConfiguration[ParticipantsRequestBuilderGetQueryParameters] msgraph_beta.generated.communications.calls.item.participants.ParticipantsRequestBuilder.ParticipantsRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.communications.calls.item.participants.ParticipantsRequestBuilder::|public|admit_all_from_lobby:AdmitAllFromLobbyRequestBuilder msgraph_beta.generated.communications.calls.item.participants.ParticipantsRequestBuilder::|public|by_participant_id(participant_id:str):ParticipantItemRequestBuilder msgraph_beta.generated.communications.calls.item.participants.ParticipantsRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None msgraph_beta.generated.communications.calls.item.participants.ParticipantsRequestBuilder::|public|count:CountRequestBuilder @@ -62628,6 +62508,7 @@ msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.ReportsRequestBu msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.ReportsRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.ReportsRequestBuilder::|public|request_adapter:RequestAdapter msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.ReportsRequestBuilder::|public|retrieve_bulk_action_status_report:RetrieveBulkActionStatusReportRequestBuilder +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.ReportsRequestBuilder::|public|retrieve_cloud_pc_performance_metrics_report:RetrieveCloudPcPerformanceMetricsReportRequestBuilder msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.ReportsRequestBuilder::|public|retrieve_cloud_pc_recommendation_reports:RetrieveCloudPcRecommendationReportsRequestBuilder msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.ReportsRequestBuilder::|public|retrieve_cloud_pc_tenant_metrics_report:RetrieveCloudPcTenantMetricsReportRequestBuilder msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.ReportsRequestBuilder::|public|retrieve_cloud_pc_troubleshoot_reports:RetrieveCloudPcTroubleshootReportsRequestBuilder @@ -62670,6 +62551,33 @@ msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveBulkActi msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveBulkActionStatusReport.RetrieveBulkActionStatusReportRequestBuilder::|public|to_post_request_information(body:RetrieveBulkActionStatusReportPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveBulkActionStatusReport.RetrieveBulkActionStatusReportRequestBuilder::|public|url_template:str msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveBulkActionStatusReport.RetrieveBulkActionStatusReportRequestBuilder::|public|with_url(raw_url:str):RetrieveBulkActionStatusReportRequestBuilder +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|additional_data():dict[str, Any] +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|backing_store:BackingStore +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|cloud_pc_id():str +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|cloud_pc_id(value:str):None +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|constructor():None +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|end_date_time():datetime.datetime +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|end_date_time(value:datetime.datetime):None +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|metric_names():CloudPcPerformanceMetricNamesType +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|metric_names(value:CloudPcPerformanceMetricNamesType):None +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|start_date_time():datetime.datetime +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|start_date_time(value:datetime.datetime):None +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|time_range():CloudPcVmPerformanceMetricsTimeRange +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|public|time_range(value:CloudPcVmPerformanceMetricsTimeRange):None +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody::|static|public|create_from_discriminator_value(parse_node:ParseNode):RetrieveCloudPcPerformanceMetricsReportPostRequestBody +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportPostRequestBody~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportRequestBuilder-->BaseRequestBuilder +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportRequestBuilder.RetrieveCloudPcPerformanceMetricsReportRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportRequestBuilder::|public|post(body:RetrieveCloudPcPerformanceMetricsReportPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):bytes +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportRequestBuilder::|public|request_adapter:RequestAdapter +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportRequestBuilder::|public|to_post_request_information(body:RetrieveCloudPcPerformanceMetricsReportPostRequestBody; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportRequestBuilder::|public|url_template:str +msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcPerformanceMetricsReport.RetrieveCloudPcPerformanceMetricsReportRequestBuilder::|public|with_url(raw_url:str):RetrieveCloudPcPerformanceMetricsReportRequestBuilder msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcRecommendationReports.RetrieveCloudPcRecommendationReportsPostRequestBody::|public|additional_data():dict[str, Any] msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcRecommendationReports.RetrieveCloudPcRecommendationReportsPostRequestBody::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.deviceManagement.virtualEndpoint.reports.retrieveCloudPcRecommendationReports.RetrieveCloudPcRecommendationReportsPostRequestBody::|public|backing_store:BackingStore @@ -162531,7 +162439,6 @@ msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.Delete msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.DeletedItemsRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.DeletedItemsRequestBuilder::|public|delete(request_configuration?:RequestConfiguration[QueryParameters]):None msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.DeletedItemsRequestBuilder::|public|get(request_configuration?:RequestConfiguration[DeletedItemsRequestBuilderGetQueryParameters]):DeletedItemContainer -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.DeletedItemsRequestBuilder::|public|lifecycle_policies:LifecyclePoliciesRequestBuilder msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.DeletedItemsRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.DeletedItemsRequestBuilder::|public|request_adapter:RequestAdapter msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.DeletedItemsRequestBuilder::|public|to_delete_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation @@ -162539,234 +162446,6 @@ msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.Delete msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.DeletedItemsRequestBuilder::|public|url_template:str msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.DeletedItemsRequestBuilder::|public|with_url(raw_url:str):DeletedItemsRequestBuilder msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.DeletedItemsRequestBuilder::|public|workflows:WorkflowsRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder.CountRequestBuilderGetRequestConfiguration-->RequestConfiguration[CountRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder::|public|get(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.count.CountRequestBuilder::|public|with_url(raw_url:str):CountRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetRequestConfiguration-->RequestConfiguration[CreatedByRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|get(request_configuration?:RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]):DirectoryObject -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|with_url(raw_url:str):CreatedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetRequestConfiguration-->RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]):DirectoryObject -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|with_url(raw_url:str):LastModifiedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderDeleteRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|created_by:CreatedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|delete(request_configuration?:RequestConfiguration[QueryParameters]):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]):LifecyclePolicy -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|last_modified_by:LastModifiedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|microsoft_graph_identity_governance_restore:MicrosoftGraphIdentityGovernanceRestoreRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|rules:RulesRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|to_delete_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|versions:VersionsRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|with_url(raw_url:str):LifecyclePolicyItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder.MicrosoftGraphIdentityGovernanceRestoreRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|post(request_configuration?:RequestConfiguration[QueryParameters]):LifecyclePolicy -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|to_post_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|with_url(raw_url:str):MicrosoftGraphIdentityGovernanceRestoreRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]):LifecyclePolicyRule -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|with_url(raw_url:str):LifecyclePolicyRuleItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|orderby:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetRequestConfiguration-->RequestConfiguration[RulesRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|by_lifecycle_policy_rule_id(lifecycle_policy_rule_id:str):LifecyclePolicyRuleItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|get(request_configuration?:RequestConfiguration[RulesRequestBuilderGetQueryParameters]):LifecyclePolicyRuleCollectionResponse -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[RulesRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|with_url(raw_url:str):RulesRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetRequestConfiguration-->RequestConfiguration[CreatedByRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|get(request_configuration?:RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]):DirectoryObject -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|with_url(raw_url:str):CreatedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetRequestConfiguration-->RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]):DirectoryObject -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|with_url(raw_url:str):LastModifiedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|created_by:CreatedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]):LifecyclePolicy -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|last_modified_by:LastModifiedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|microsoft_graph_identity_governance_restore:MicrosoftGraphIdentityGovernanceRestoreRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|rules:RulesRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|with_url(raw_url:str):LifecyclePolicyItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder.MicrosoftGraphIdentityGovernanceRestoreRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|post(request_configuration?:RequestConfiguration[QueryParameters]):LifecyclePolicy -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|to_post_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|with_url(raw_url:str):MicrosoftGraphIdentityGovernanceRestoreRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder.CountRequestBuilderGetRequestConfiguration-->RequestConfiguration[CountRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|get(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|with_url(raw_url:str):CountRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]):LifecyclePolicyRule -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|with_url(raw_url:str):LifecyclePolicyRuleItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|orderby:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetRequestConfiguration-->RequestConfiguration[RulesRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|by_lifecycle_policy_rule_id(lifecycle_policy_rule_id:str):LifecyclePolicyRuleItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|count:CountRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|get(request_configuration?:RequestConfiguration[RulesRequestBuilderGetQueryParameters]):LifecyclePolicyRuleCollectionResponse -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[RulesRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|with_url(raw_url:str):RulesRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|orderby:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetRequestConfiguration-->RequestConfiguration[VersionsRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|by_lifecycle_policy_id1(lifecycle_policy_id1:str):LifecyclePolicyItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|get(request_configuration?:RequestConfiguration[VersionsRequestBuilderGetQueryParameters]):LifecyclePolicyCollectionResponse -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[VersionsRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|with_url(raw_url:str):VersionsRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|orderby:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|by_lifecycle_policy_id(lifecycle_policy_id:str):LifecyclePolicyItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|count:CountRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters]):LifecyclePolicyCollectionResponse -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|with_url(raw_url:str):LifecyclePoliciesRequestBuilder msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.workflows.count.CountRequestBuilder-->BaseRequestBuilder msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.workflows.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str msgraph_beta.generated.identityGovernance.lifecycleWorkflows.deletedItems.workflows.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str @@ -165479,284 +165158,6 @@ msgraph_beta.generated.identityGovernance.lifecycleWorkflows.insights.microsoftG msgraph_beta.generated.identityGovernance.lifecycleWorkflows.insights.microsoftGraphIdentityGovernanceWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime.MicrosoftGraphIdentityGovernanceWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.identityGovernance.lifecycleWorkflows.insights.microsoftGraphIdentityGovernanceWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime.MicrosoftGraphIdentityGovernanceWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder::|public|url_template:str msgraph_beta.generated.identityGovernance.lifecycleWorkflows.insights.microsoftGraphIdentityGovernanceWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTime.MicrosoftGraphIdentityGovernanceWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder::|public|with_url(raw_url:str):MicrosoftGraphIdentityGovernanceWorkflowsProcessedSummaryWithStartDateTimeWithEndDateTimeRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder.CountRequestBuilderGetRequestConfiguration-->RequestConfiguration[CountRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder::|public|get(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.count.CountRequestBuilder::|public|with_url(raw_url:str):CountRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetRequestConfiguration-->RequestConfiguration[CreatedByRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|get(request_configuration?:RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]):DirectoryObject -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.createdBy.CreatedByRequestBuilder::|public|with_url(raw_url:str):CreatedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetRequestConfiguration-->RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]):DirectoryObject -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|with_url(raw_url:str):LastModifiedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderDeleteRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|created_by:CreatedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|delete(request_configuration?:RequestConfiguration[QueryParameters]):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]):LifecyclePolicy -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|last_modified_by:LastModifiedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|microsoft_graph_identity_governance_restore:MicrosoftGraphIdentityGovernanceRestoreRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|rules:RulesRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|to_delete_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|versions:VersionsRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.LifecyclePolicyItemRequestBuilder::|public|with_url(raw_url:str):LifecyclePolicyItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder.MicrosoftGraphIdentityGovernanceRestoreRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|post(request_configuration?:RequestConfiguration[QueryParameters]):LifecyclePolicy -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|to_post_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|with_url(raw_url:str):MicrosoftGraphIdentityGovernanceRestoreRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]):LifecyclePolicyRule -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|with_url(raw_url:str):LifecyclePolicyRuleItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|orderby:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder.RulesRequestBuilderGetRequestConfiguration-->RequestConfiguration[RulesRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|by_lifecycle_policy_rule_id(lifecycle_policy_rule_id:str):LifecyclePolicyRuleItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|get(request_configuration?:RequestConfiguration[RulesRequestBuilderGetQueryParameters]):LifecyclePolicyRuleCollectionResponse -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[RulesRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.rules.RulesRequestBuilder::|public|with_url(raw_url:str):RulesRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder.CreatedByRequestBuilderGetRequestConfiguration-->RequestConfiguration[CreatedByRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|get(request_configuration?:RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]):DirectoryObject -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CreatedByRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.createdBy.CreatedByRequestBuilder::|public|with_url(raw_url:str):CreatedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder.LastModifiedByRequestBuilderGetRequestConfiguration-->RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]):DirectoryObject -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LastModifiedByRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.lastModifiedBy.LastModifiedByRequestBuilder::|public|with_url(raw_url:str):LastModifiedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder.LifecyclePolicyItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|created_by:CreatedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]):LifecyclePolicy -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|last_modified_by:LastModifiedByRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|microsoft_graph_identity_governance_restore:MicrosoftGraphIdentityGovernanceRestoreRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|rules:RulesRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePolicyItemRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.LifecyclePolicyItemRequestBuilder::|public|with_url(raw_url:str):LifecyclePolicyItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder.MicrosoftGraphIdentityGovernanceRestoreRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|post(request_configuration?:RequestConfiguration[QueryParameters]):LifecyclePolicy -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|to_post_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.microsoftGraphIdentityGovernanceRestore.MicrosoftGraphIdentityGovernanceRestoreRequestBuilder::|public|with_url(raw_url:str):MicrosoftGraphIdentityGovernanceRestoreRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder.CountRequestBuilderGetRequestConfiguration-->RequestConfiguration[CountRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|get(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.count.CountRequestBuilder::|public|with_url(raw_url:str):CountRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder.LifecyclePolicyRuleItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]):LifecyclePolicyRule -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePolicyRuleItemRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.item.LifecyclePolicyRuleItemRequestBuilder::|public|with_url(raw_url:str):LifecyclePolicyRuleItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|orderby:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder.RulesRequestBuilderGetRequestConfiguration-->RequestConfiguration[RulesRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|by_lifecycle_policy_rule_id(lifecycle_policy_rule_id:str):LifecyclePolicyRuleItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|count:CountRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|get(request_configuration?:RequestConfiguration[RulesRequestBuilderGetQueryParameters]):LifecyclePolicyRuleCollectionResponse -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[RulesRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.item.rules.RulesRequestBuilder::|public|with_url(raw_url:str):RulesRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|orderby:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder.VersionsRequestBuilderGetRequestConfiguration-->RequestConfiguration[VersionsRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|by_lifecycle_policy_id1(lifecycle_policy_id1:str):LifecyclePolicyItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|get(request_configuration?:RequestConfiguration[VersionsRequestBuilderGetQueryParameters]):LifecyclePolicyCollectionResponse -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[VersionsRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.item.versions.VersionsRequestBuilder::|public|with_url(raw_url:str):VersionsRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|orderby:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder.LifecyclePoliciesRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|by_lifecycle_policy_id(lifecycle_policy_id:str):LifecyclePolicyItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|count:CountRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters]):LifecyclePolicyCollectionResponse -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|post(body:LifecyclePolicy; request_configuration?:RequestConfiguration[QueryParameters]):LifecyclePolicy -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePoliciesRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|to_post_request_information(body:LifecyclePolicy; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicies.LifecyclePoliciesRequestBuilder::|public|with_url(raw_url:str):LifecyclePoliciesRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder.CountRequestBuilderGetRequestConfiguration-->RequestConfiguration[CountRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder::|public|get(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.count.CountRequestBuilder::|public|with_url(raw_url:str):CountRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder.LifecyclePolicyPriorityConfigurationItemRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder.LifecyclePolicyPriorityConfigurationItemRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder.LifecyclePolicyPriorityConfigurationItemRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder.LifecyclePolicyPriorityConfigurationItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePolicyPriorityConfigurationItemRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder.LifecyclePolicyPriorityConfigurationItemRequestBuilderPatchRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePolicyPriorityConfigurationItemRequestBuilderGetQueryParameters]):LifecyclePolicyPriorityConfiguration -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder::|public|patch(body:LifecyclePolicyPriorityConfiguration; request_configuration?:RequestConfiguration[QueryParameters]):LifecyclePolicyPriorityConfiguration -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePolicyPriorityConfigurationItemRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder::|public|to_patch_request_information(body:LifecyclePolicyPriorityConfiguration; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.item.LifecyclePolicyPriorityConfigurationItemRequestBuilder::|public|with_url(raw_url:str):LifecyclePolicyPriorityConfigurationItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder.LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder.LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder.LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder.LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder.LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters::|public|orderby:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder.LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder.LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder.LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder.LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder.LifecyclePolicyPriorityConfigurationsRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder::|public|by_lifecycle_policy_priority_configuration_id(lifecycle_policy_priority_configuration_id:str):LifecyclePolicyPriorityConfigurationItemRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder::|public|count:CountRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters]):LifecyclePolicyPriorityConfigurationCollectionResponse -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecyclePolicyPriorityConfigurationsRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder::|public|url_template:str -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.lifecyclePolicyPriorityConfigurations.LifecyclePolicyPriorityConfigurationsRequestBuilder::|public|with_url(raw_url:str):LifecyclePolicyPriorityConfigurationsRequestBuilder msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder-->BaseRequestBuilder msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder.LifecycleWorkflowsRequestBuilderDeleteRequestConfiguration-->RequestConfiguration[QueryParameters] msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder.LifecycleWorkflowsRequestBuilderGetQueryParameters::|public|expand:list[str] @@ -165770,8 +165171,6 @@ msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsR msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder::|public|deleted_items:DeletedItemsRequestBuilder msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecycleWorkflowsRequestBuilderGetQueryParameters]):LifecycleWorkflowsContainer msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder::|public|insights:InsightsRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder::|public|lifecycle_policies:LifecyclePoliciesRequestBuilder -msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder::|public|lifecycle_policy_priority_configurations:LifecyclePolicyPriorityConfigurationsRequestBuilder msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder::|public|patch(body:LifecycleWorkflowsContainer; request_configuration?:RequestConfiguration[QueryParameters]):LifecycleWorkflowsContainer msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] msgraph_beta.generated.identityGovernance.lifecycleWorkflows.LifecycleWorkflowsRequestBuilder::|public|request_adapter:RequestAdapter @@ -173471,6 +172870,63 @@ msgraph_beta.generated.models.AccessAction::|public|odata_type(value:str):None msgraph_beta.generated.models.AccessAction::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.AccessAction::|static|public|create_from_discriminator_value(parse_node:ParseNode):AccessAction msgraph_beta.generated.models.AccessAction~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.AccessDriftDetail-->Entity +msgraph_beta.generated.models.AccessDriftDetail::|public|constructor():None +msgraph_beta.generated.models.AccessDriftDetail::|public|created_date_time():datetime.datetime +msgraph_beta.generated.models.AccessDriftDetail::|public|created_date_time(value:datetime.datetime):None +msgraph_beta.generated.models.AccessDriftDetail::|public|drift_source():AccessDriftSource +msgraph_beta.generated.models.AccessDriftDetail::|public|drift_source(value:AccessDriftSource):None +msgraph_beta.generated.models.AccessDriftDetail::|public|drift_type():AccessDriftType +msgraph_beta.generated.models.AccessDriftDetail::|public|drift_type(value:AccessDriftType):None +msgraph_beta.generated.models.AccessDriftDetail::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AccessDriftDetail::|public|identities():list[DriftIdentityInfo] +msgraph_beta.generated.models.AccessDriftDetail::|public|identities(value:list[DriftIdentityInfo]):None +msgraph_beta.generated.models.AccessDriftDetail::|public|odata_type:str +msgraph_beta.generated.models.AccessDriftDetail::|public|resource():DriftResourceInfo +msgraph_beta.generated.models.AccessDriftDetail::|public|resource(value:DriftResourceInfo):None +msgraph_beta.generated.models.AccessDriftDetail::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.AccessDriftDetail::|static|public|create_from_discriminator_value(parse_node:ParseNode):AccessDriftDetail +msgraph_beta.generated.models.AccessDriftReport-->Entity +msgraph_beta.generated.models.AccessDriftReport::|public|constructor():None +msgraph_beta.generated.models.AccessDriftReport::|public|download_uri():str +msgraph_beta.generated.models.AccessDriftReport::|public|download_uri(value:str):None +msgraph_beta.generated.models.AccessDriftReport::|public|expires_at():datetime.datetime +msgraph_beta.generated.models.AccessDriftReport::|public|expires_at(value:datetime.datetime):None +msgraph_beta.generated.models.AccessDriftReport::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AccessDriftReport::|public|odata_type:str +msgraph_beta.generated.models.AccessDriftReport::|public|resource_type():AccessDriftReportResourceType +msgraph_beta.generated.models.AccessDriftReport::|public|resource_type(value:AccessDriftReportResourceType):None +msgraph_beta.generated.models.AccessDriftReport::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.AccessDriftReport::|static|public|create_from_discriminator_value(parse_node:ParseNode):AccessDriftReport +msgraph_beta.generated.models.AccessDriftReportResourceType::0000-Application +msgraph_beta.generated.models.AccessDriftReportResourceType::0001-Group +msgraph_beta.generated.models.AccessDriftReportResourceType::0002-UnknownFutureValue +msgraph_beta.generated.models.AccessDriftResourceType::0000-Application +msgraph_beta.generated.models.AccessDriftResourceType::0001-Group +msgraph_beta.generated.models.AccessDriftResourceType::0002-UnknownFutureValue +msgraph_beta.generated.models.AccessDriftSource::0000-Entra +msgraph_beta.generated.models.AccessDriftSource::0001-ExternalApplication +msgraph_beta.generated.models.AccessDriftSource::0002-UnknownFutureValue +msgraph_beta.generated.models.AccessDriftSummary-->Entity +msgraph_beta.generated.models.AccessDriftSummary::|public|constructor():None +msgraph_beta.generated.models.AccessDriftSummary::|public|created_date_time():datetime.datetime +msgraph_beta.generated.models.AccessDriftSummary::|public|created_date_time(value:datetime.datetime):None +msgraph_beta.generated.models.AccessDriftSummary::|public|details():list[AccessDriftDetail] +msgraph_beta.generated.models.AccessDriftSummary::|public|details(value:list[AccessDriftDetail]):None +msgraph_beta.generated.models.AccessDriftSummary::|public|drift_counts():DriftCounts +msgraph_beta.generated.models.AccessDriftSummary::|public|drift_counts(value:DriftCounts):None +msgraph_beta.generated.models.AccessDriftSummary::|public|drift_source():AccessDriftSource +msgraph_beta.generated.models.AccessDriftSummary::|public|drift_source(value:AccessDriftSource):None +msgraph_beta.generated.models.AccessDriftSummary::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AccessDriftSummary::|public|odata_type:str +msgraph_beta.generated.models.AccessDriftSummary::|public|resource():DriftResourceInfo +msgraph_beta.generated.models.AccessDriftSummary::|public|resource(value:DriftResourceInfo):None +msgraph_beta.generated.models.AccessDriftSummary::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.AccessDriftSummary::|static|public|create_from_discriminator_value(parse_node:ParseNode):AccessDriftSummary +msgraph_beta.generated.models.AccessDriftType::0000-Unauthorized +msgraph_beta.generated.models.AccessDriftType::0001-Missing +msgraph_beta.generated.models.AccessDriftType::0002-InSync +msgraph_beta.generated.models.AccessDriftType::0003-UnknownFutureValue msgraph_beta.generated.models.AccessEntityType::0000-User msgraph_beta.generated.models.AccessEntityType::0001-Group msgraph_beta.generated.models.AccessEntityType::0002-UnknownFutureValue @@ -175444,6 +174900,8 @@ msgraph_beta.generated.models.ActivityMetadata::|public|constructor():None msgraph_beta.generated.models.ActivityMetadata::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] msgraph_beta.generated.models.ActivityMetadata::|public|odata_type():str msgraph_beta.generated.models.ActivityMetadata::|public|odata_type(value:str):None +msgraph_beta.generated.models.ActivityMetadata::|public|participants():list[InteractionParticipant] +msgraph_beta.generated.models.ActivityMetadata::|public|participants(value:list[InteractionParticipant]):None msgraph_beta.generated.models.ActivityMetadata::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.ActivityMetadata::|static|public|create_from_discriminator_value(parse_node:ParseNode):ActivityMetadata msgraph_beta.generated.models.ActivityMetadata~~>AdditionalDataHolder; BackedModel; Parsable @@ -175833,18 +175291,6 @@ msgraph_beta.generated.models.AdminWindowsUpdates::|public|update_policies():lis msgraph_beta.generated.models.AdminWindowsUpdates::|public|update_policies(value:list[UpdatePolicy]):None msgraph_beta.generated.models.AdminWindowsUpdates::|static|public|create_from_discriminator_value(parse_node:ParseNode):AdminWindowsUpdates msgraph_beta.generated.models.Admin~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.models.AdmitAllFromLobbyOperation-->CommsOperation -msgraph_beta.generated.models.AdmitAllFromLobbyOperation::|public|constructor():None -msgraph_beta.generated.models.AdmitAllFromLobbyOperation::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.AdmitAllFromLobbyOperation::|public|odata_type:str -msgraph_beta.generated.models.AdmitAllFromLobbyOperation::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.AdmitAllFromLobbyOperation::|static|public|create_from_discriminator_value(parse_node:ParseNode):AdmitAllFromLobbyOperation -msgraph_beta.generated.models.AdmitFromLobbyOperation-->CommsOperation -msgraph_beta.generated.models.AdmitFromLobbyOperation::|public|constructor():None -msgraph_beta.generated.models.AdmitFromLobbyOperation::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.AdmitFromLobbyOperation::|public|odata_type:str -msgraph_beta.generated.models.AdmitFromLobbyOperation::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.AdmitFromLobbyOperation::|static|public|create_from_discriminator_value(parse_node:ParseNode):AdmitFromLobbyOperation msgraph_beta.generated.models.AdvancedBitLockerState::0000-Success msgraph_beta.generated.models.AdvancedBitLockerState::0001-NoUserConsent msgraph_beta.generated.models.AdvancedBitLockerState::0002-OsVolumeUnprotected @@ -176378,6 +175824,36 @@ msgraph_beta.generated.models.AgentInterface~~>AdditionalDataHolder; BackedModel msgraph_beta.generated.models.AgentMessageNotificationMode::0000-AtMentionedMessagesOnly msgraph_beta.generated.models.AgentMessageNotificationMode::0001-AllMessages msgraph_beta.generated.models.AgentMessageNotificationMode::0002-UnknownFutureValue +msgraph_beta.generated.models.AgentMetadata::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.AgentMetadata::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.AgentMetadata::|public|agent_administrative_unit_id():str +msgraph_beta.generated.models.AgentMetadata::|public|agent_administrative_unit_id(value:str):None +msgraph_beta.generated.models.AgentMetadata::|public|agent_blueprint_id():str +msgraph_beta.generated.models.AgentMetadata::|public|agent_blueprint_id(value:str):None +msgraph_beta.generated.models.AgentMetadata::|public|agent_category():str +msgraph_beta.generated.models.AgentMetadata::|public|agent_category(value:str):None +msgraph_beta.generated.models.AgentMetadata::|public|agent_owner():str +msgraph_beta.generated.models.AgentMetadata::|public|agent_owner(value:str):None +msgraph_beta.generated.models.AgentMetadata::|public|agent_publisher():str +msgraph_beta.generated.models.AgentMetadata::|public|agent_publisher(value:str):None +msgraph_beta.generated.models.AgentMetadata::|public|alt_agent_ids():list[str] +msgraph_beta.generated.models.AgentMetadata::|public|alt_agent_ids(value:list[str]):None +msgraph_beta.generated.models.AgentMetadata::|public|backing_store:BackingStore +msgraph_beta.generated.models.AgentMetadata::|public|constructor():None +msgraph_beta.generated.models.AgentMetadata::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AgentMetadata::|public|is_entra_agent_id():bool +msgraph_beta.generated.models.AgentMetadata::|public|is_entra_agent_id(value:bool):None +msgraph_beta.generated.models.AgentMetadata::|public|odata_type():str +msgraph_beta.generated.models.AgentMetadata::|public|odata_type(value:str):None +msgraph_beta.generated.models.AgentMetadata::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.AgentMetadata::|static|public|create_from_discriminator_value(parse_node:ParseNode):AgentMetadata +msgraph_beta.generated.models.AgentMetadata~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.AgentParticipant-->InteractionParticipant +msgraph_beta.generated.models.AgentParticipant::|public|constructor():None +msgraph_beta.generated.models.AgentParticipant::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AgentParticipant::|public|odata_type:str +msgraph_beta.generated.models.AgentParticipant::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.AgentParticipant::|static|public|create_from_discriminator_value(parse_node:ParseNode):AgentParticipant msgraph_beta.generated.models.AgentProvider::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.AgentProvider::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.AgentProvider::|public|backing_store:BackingStore @@ -177337,6 +176813,14 @@ msgraph_beta.generated.models.AnalyticsActivityType::0001-Meeting msgraph_beta.generated.models.AnalyticsActivityType::0002-Focus msgraph_beta.generated.models.AnalyticsActivityType::0003-Chat msgraph_beta.generated.models.AnalyticsActivityType::0004-Call +msgraph_beta.generated.models.AndroidAospReferencedApp-->MobileApp +msgraph_beta.generated.models.AndroidAospReferencedApp::|public|constructor():None +msgraph_beta.generated.models.AndroidAospReferencedApp::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AndroidAospReferencedApp::|public|odata_type:str +msgraph_beta.generated.models.AndroidAospReferencedApp::|public|package_id():str +msgraph_beta.generated.models.AndroidAospReferencedApp::|public|package_id(value:str):None +msgraph_beta.generated.models.AndroidAospReferencedApp::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.AndroidAospReferencedApp::|static|public|create_from_discriminator_value(parse_node:ParseNode):AndroidAospReferencedApp msgraph_beta.generated.models.AndroidAppConfigurationSchema-->Entity msgraph_beta.generated.models.AndroidAppConfigurationSchema::|public|constructor():None msgraph_beta.generated.models.AndroidAppConfigurationSchema::|public|example_json():bytes @@ -180066,6 +179550,24 @@ msgraph_beta.generated.models.AndroidWorkProfileWiFiConfiguration::|public|ssid( msgraph_beta.generated.models.AndroidWorkProfileWiFiConfiguration::|public|wi_fi_security_type():AndroidWiFiSecurityType msgraph_beta.generated.models.AndroidWorkProfileWiFiConfiguration::|public|wi_fi_security_type(value:AndroidWiFiSecurityType):None msgraph_beta.generated.models.AndroidWorkProfileWiFiConfiguration::|static|public|create_from_discriminator_value(parse_node:ParseNode):AndroidWorkProfileWiFiConfiguration +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyDetail-->M365CapabilityBase +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyDetail::|public|constructor():None +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyDetail::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyDetail::|public|odata_type:str +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyDetail::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyDetail::|static|public|create_from_discriminator_value(parse_node:ParseNode):AnonymousCalendarSharingFreeBusyDetail +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyReviewer-->M365CapabilityBase +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyReviewer::|public|constructor():None +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyReviewer::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyReviewer::|public|odata_type:str +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyReviewer::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusyReviewer::|static|public|create_from_discriminator_value(parse_node:ParseNode):AnonymousCalendarSharingFreeBusyReviewer +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusySimple-->M365CapabilityBase +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusySimple::|public|constructor():None +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusySimple::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusySimple::|public|odata_type:str +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusySimple::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.AnonymousCalendarSharingFreeBusySimple::|static|public|create_from_discriminator_value(parse_node:ParseNode):AnonymousCalendarSharingFreeBusySimple msgraph_beta.generated.models.AnonymousGuestConversationMember-->ConversationMember msgraph_beta.generated.models.AnonymousGuestConversationMember::|public|anonymous_guest_id():str msgraph_beta.generated.models.AnonymousGuestConversationMember::|public|anonymous_guest_id(value:str):None @@ -180951,6 +180453,12 @@ msgraph_beta.generated.models.ApplicationDataType::0003-DatabaseFiles msgraph_beta.generated.models.ApplicationDataType::0004-Documents msgraph_beta.generated.models.ApplicationDataType::0005-MediaFiles msgraph_beta.generated.models.ApplicationDataType::0006-UnknownFutureValue +msgraph_beta.generated.models.ApplicationDriftResourceInfo-->DriftResourceInfo +msgraph_beta.generated.models.ApplicationDriftResourceInfo::|public|constructor():None +msgraph_beta.generated.models.ApplicationDriftResourceInfo::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.ApplicationDriftResourceInfo::|public|odata_type:str +msgraph_beta.generated.models.ApplicationDriftResourceInfo::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.ApplicationDriftResourceInfo::|static|public|create_from_discriminator_value(parse_node:ParseNode):ApplicationDriftResourceInfo msgraph_beta.generated.models.ApplicationEnforcedRestrictionsSessionControl-->ConditionalAccessSessionControl msgraph_beta.generated.models.ApplicationEnforcedRestrictionsSessionControl::|public|constructor():None msgraph_beta.generated.models.ApplicationEnforcedRestrictionsSessionControl::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -183965,7 +183473,7 @@ msgraph_beta.generated.models.AuthenticationMethodSignInState::0003-PhoneNumberN msgraph_beta.generated.models.AuthenticationMethodSignInState::0004-Ready msgraph_beta.generated.models.AuthenticationMethodSignInState::0005-NotConfigured msgraph_beta.generated.models.AuthenticationMethodSignInState::0006-UnknownFutureValue -msgraph_beta.generated.models.AuthenticationMethodsPolicy-->Entity +msgraph_beta.generated.models.AuthenticationMethodsPolicy-->PolicyDeletableItem msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|authentication_method_configurations():list[AuthenticationMethodConfiguration] msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|authentication_method_configurations(value:list[AuthenticationMethodConfiguration]):None msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|constructor():None @@ -183974,6 +183482,8 @@ msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|description(v msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|display_name():str msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|display_name(value:str):None msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|id():str +msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|id(value:str):None msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|last_modified_date_time():datetime.datetime msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|last_modified_date_time(value:datetime.datetime):None msgraph_beta.generated.models.AuthenticationMethodsPolicy::|public|microsoft_authenticator_platform_settings():MicrosoftAuthenticatorPlatformSettings @@ -184145,7 +183655,7 @@ msgraph_beta.generated.models.AuthenticationStrength::|public|odata_type():str msgraph_beta.generated.models.AuthenticationStrength::|public|odata_type(value:str):None msgraph_beta.generated.models.AuthenticationStrength::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.AuthenticationStrength::|static|public|create_from_discriminator_value(parse_node:ParseNode):AuthenticationStrength -msgraph_beta.generated.models.AuthenticationStrengthPolicy-->Entity +msgraph_beta.generated.models.AuthenticationStrengthPolicy-->PolicyDeletableItem msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|allowed_combinations():list[AuthenticationMethodModes] msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|allowed_combinations(value:list[AuthenticationMethodModes]):None msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|combination_configurations():list[AuthenticationCombinationConfiguration] @@ -184158,6 +183668,8 @@ msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|description( msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|display_name():str msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|display_name(value:str):None msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|id():str +msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|id(value:str):None msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|modified_date_time():datetime.datetime msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|modified_date_time(value:datetime.datetime):None msgraph_beta.generated.models.AuthenticationStrengthPolicy::|public|odata_type:str @@ -189606,6 +189118,20 @@ msgraph_beta.generated.models.chromeOSOnboardingStatus::0002-Onboarded msgraph_beta.generated.models.chromeOSOnboardingStatus::0003-Failed msgraph_beta.generated.models.chromeOSOnboardingStatus::0004-Offboarding msgraph_beta.generated.models.chromeOSOnboardingStatus::0005-UnknownFutureValue +msgraph_beta.generated.models.ChunkOffsets::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.ChunkOffsets::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.ChunkOffsets::|public|backing_store:BackingStore +msgraph_beta.generated.models.ChunkOffsets::|public|constructor():None +msgraph_beta.generated.models.ChunkOffsets::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.ChunkOffsets::|public|lengths():str +msgraph_beta.generated.models.ChunkOffsets::|public|lengths(value:str):None +msgraph_beta.generated.models.ChunkOffsets::|public|odata_type():str +msgraph_beta.generated.models.ChunkOffsets::|public|odata_type(value:str):None +msgraph_beta.generated.models.ChunkOffsets::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.ChunkOffsets::|public|starts():str +msgraph_beta.generated.models.ChunkOffsets::|public|starts(value:str):None +msgraph_beta.generated.models.ChunkOffsets::|static|public|create_from_discriminator_value(parse_node:ParseNode):ChunkOffsets +msgraph_beta.generated.models.ChunkOffsets~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.ClaimBinding::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.ClaimBinding::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.ClaimBinding::|public|backing_store:BackingStore @@ -189747,6 +189273,9 @@ msgraph_beta.generated.models.ClassificationMethod::0000-PatternMatch msgraph_beta.generated.models.ClassificationMethod::0001-ExactDataMatch msgraph_beta.generated.models.ClassificationMethod::0002-Fingerprint msgraph_beta.generated.models.ClassificationMethod::0003-MachineLearning +msgraph_beta.generated.models.ClassificationMethod::0004-PrivacyDataMatch +msgraph_beta.generated.models.ClassificationMethod::0005-AiPowered +msgraph_beta.generated.models.ClassificationMethod::0006-UnknownFutureValue msgraph_beta.generated.models.ClassificationRequestContentMetaData::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.ClassificationRequestContentMetaData::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.ClassificationRequestContentMetaData::|public|backing_store:BackingStore @@ -192162,6 +191691,19 @@ msgraph_beta.generated.models.CloudPcPartnerAgentName::0000-Citrix msgraph_beta.generated.models.CloudPcPartnerAgentName::0001-UnknownFutureValue msgraph_beta.generated.models.CloudPcPartnerAgentName::0002-VMware msgraph_beta.generated.models.CloudPcPartnerAgentName::0003-Hp +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0000-CpuUsageInPercentage +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0001-AvailableMemoryInPercentage +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0002-VmAvailability +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0003-NetworkInboundInBytes +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0004-NetworkOutboundInBytes +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0005-InboundFlowsCount +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0006-OutboundFlowsCount +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0007-DiskReadInBytes +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0008-DiskWriteInBytes +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0009-DiskReadOperationsPerSecond +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0010-DiskWriteOperationsPerSecond +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0011-OsDiskLatencyInMs +msgraph_beta.generated.models.CloudPcPerformanceMetricNamesType::0012-UnknownFutureValue msgraph_beta.generated.models.CloudPCPerformanceReportName::0000-PerformanceTrendReport msgraph_beta.generated.models.CloudPCPerformanceReportName::0001-UnknownFutureValue msgraph_beta.generated.models.CloudPCPerformanceReportName::0002-CloudPcInsightReport @@ -193139,6 +192681,16 @@ msgraph_beta.generated.models.CloudPCUserSettingsPersistenceUsageResult::|public msgraph_beta.generated.models.CloudPCUserSettingsPersistenceUsageResult::|public|used_storage_in_g_b(value:int):None msgraph_beta.generated.models.CloudPCUserSettingsPersistenceUsageResult::|static|public|create_from_discriminator_value(parse_node:ParseNode):CloudPCUserSettingsPersistenceUsageResult msgraph_beta.generated.models.CloudPCUserSettingsPersistenceUsageResult~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.CloudPcVmPerformanceMetricsTimeRange::0000-Last2Hours +msgraph_beta.generated.models.CloudPcVmPerformanceMetricsTimeRange::0001-Last4Hours +msgraph_beta.generated.models.CloudPcVmPerformanceMetricsTimeRange::0002-Last12Hours +msgraph_beta.generated.models.CloudPcVmPerformanceMetricsTimeRange::0003-Last24Hours +msgraph_beta.generated.models.CloudPcVmPerformanceMetricsTimeRange::0004-Last48Hours +msgraph_beta.generated.models.CloudPcVmPerformanceMetricsTimeRange::0005-Last4Days +msgraph_beta.generated.models.CloudPcVmPerformanceMetricsTimeRange::0006-Last7Days +msgraph_beta.generated.models.CloudPcVmPerformanceMetricsTimeRange::0007-Last14Days +msgraph_beta.generated.models.CloudPcVmPerformanceMetricsTimeRange::0008-Last28Days +msgraph_beta.generated.models.CloudPcVmPerformanceMetricsTimeRange::0009-UnknownFutureValue msgraph_beta.generated.models.CloudPcWindowsSetting::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.CloudPcWindowsSetting::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.CloudPcWindowsSetting::|public|backing_store:BackingStore @@ -194019,10 +193571,40 @@ msgraph_beta.generated.models.ComputeRightsAndInheritanceResult::|public|sensiti msgraph_beta.generated.models.ComputeRightsAndInheritanceResult::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.ComputeRightsAndInheritanceResult::|static|public|create_from_discriminator_value(parse_node:ParseNode):ComputeRightsAndInheritanceResult msgraph_beta.generated.models.ComputeRightsAndInheritanceResult~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|backing_store:BackingStore +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|constructor():None +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|exclude_agent_contexts():list[str] +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|exclude_agent_contexts(value:list[str]):None +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|include_agent_contexts():list[str] +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|include_agent_contexts(value:list[str]):None +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|odata_type():str +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|odata_type(value:str):None +msgraph_beta.generated.models.ConditionalAccessAgentContext::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.ConditionalAccessAgentContext::|static|public|create_from_discriminator_value(parse_node:ParseNode):ConditionalAccessAgentContext +msgraph_beta.generated.models.ConditionalAccessAgentContext~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.ConditionalAccessAgentIdRiskLevels::0000-Low msgraph_beta.generated.models.ConditionalAccessAgentIdRiskLevels::0001-Medium msgraph_beta.generated.models.ConditionalAccessAgentIdRiskLevels::0002-High msgraph_beta.generated.models.ConditionalAccessAgentIdRiskLevels::0003-UnknownFutureValue +msgraph_beta.generated.models.ConditionalAccessAgents::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.ConditionalAccessAgents::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.ConditionalAccessAgents::|public|agent_filter():ConditionalAccessFilter +msgraph_beta.generated.models.ConditionalAccessAgents::|public|agent_filter(value:ConditionalAccessFilter):None +msgraph_beta.generated.models.ConditionalAccessAgents::|public|backing_store:BackingStore +msgraph_beta.generated.models.ConditionalAccessAgents::|public|constructor():None +msgraph_beta.generated.models.ConditionalAccessAgents::|public|exclude_agent_users():list[str] +msgraph_beta.generated.models.ConditionalAccessAgents::|public|exclude_agent_users(value:list[str]):None +msgraph_beta.generated.models.ConditionalAccessAgents::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.ConditionalAccessAgents::|public|include_agent_users():list[str] +msgraph_beta.generated.models.ConditionalAccessAgents::|public|include_agent_users(value:list[str]):None +msgraph_beta.generated.models.ConditionalAccessAgents::|public|odata_type():str +msgraph_beta.generated.models.ConditionalAccessAgents::|public|odata_type(value:str):None +msgraph_beta.generated.models.ConditionalAccessAgents::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.ConditionalAccessAgents::|static|public|create_from_discriminator_value(parse_node:ParseNode):ConditionalAccessAgents +msgraph_beta.generated.models.ConditionalAccessAgents~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.ConditionalAccessAllExternalTenants-->ConditionalAccessExternalTenants msgraph_beta.generated.models.ConditionalAccessAllExternalTenants::|public|constructor():None msgraph_beta.generated.models.ConditionalAccessAllExternalTenants::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -194114,6 +193696,10 @@ msgraph_beta.generated.models.ConditionalAccessConditions::0016-AuthenticationFl msgraph_beta.generated.models.ConditionalAccessConditions::0017-InsiderRisk msgraph_beta.generated.models.ConditionalAccessConditionSet::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.ConditionalAccessConditionSet::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.ConditionalAccessConditionSet::|public|agents():ConditionalAccessAgents +msgraph_beta.generated.models.ConditionalAccessConditionSet::|public|agents(value:ConditionalAccessAgents):None +msgraph_beta.generated.models.ConditionalAccessConditionSet::|public|agent_context():ConditionalAccessAgentContext +msgraph_beta.generated.models.ConditionalAccessConditionSet::|public|agent_context(value:ConditionalAccessAgentContext):None msgraph_beta.generated.models.ConditionalAccessConditionSet::|public|agent_id_risk_levels():ConditionalAccessAgentIdRiskLevels msgraph_beta.generated.models.ConditionalAccessConditionSet::|public|agent_id_risk_levels(value:ConditionalAccessAgentIdRiskLevels):None msgraph_beta.generated.models.ConditionalAccessConditionSet::|public|applications():ConditionalAccessApplications @@ -195979,6 +195565,10 @@ msgraph_beta.generated.models.CopilotPackage::|public|platform():str msgraph_beta.generated.models.CopilotPackage::|public|platform(value:str):None msgraph_beta.generated.models.CopilotPackage::|public|publisher():str msgraph_beta.generated.models.CopilotPackage::|public|publisher(value:str):None +msgraph_beta.generated.models.CopilotPackage::|public|request_status():CopilotPackageRequestStatus +msgraph_beta.generated.models.CopilotPackage::|public|request_status(value:CopilotPackageRequestStatus):None +msgraph_beta.generated.models.CopilotPackage::|public|request_type():CopilotPackageRequestType +msgraph_beta.generated.models.CopilotPackage::|public|request_type(value:CopilotPackageRequestType):None msgraph_beta.generated.models.CopilotPackage::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.CopilotPackage::|public|short_description():str msgraph_beta.generated.models.CopilotPackage::|public|short_description(value:str):None @@ -196021,6 +195611,15 @@ msgraph_beta.generated.models.CopilotPackageDetail::|public|total_run_time_in_ho msgraph_beta.generated.models.CopilotPackageDetail::|public|total_sessions():int msgraph_beta.generated.models.CopilotPackageDetail::|public|total_sessions(value:int):None msgraph_beta.generated.models.CopilotPackageDetail::|static|public|create_from_discriminator_value(parse_node:ParseNode):CopilotPackageDetail +msgraph_beta.generated.models.CopilotPackageRequestStatus::0000-Pending +msgraph_beta.generated.models.CopilotPackageRequestStatus::0001-Approved +msgraph_beta.generated.models.CopilotPackageRequestStatus::0002-Rejected +msgraph_beta.generated.models.CopilotPackageRequestStatus::0003-UnknownFutureValue +msgraph_beta.generated.models.CopilotPackageRequestType::0000-Publish +msgraph_beta.generated.models.CopilotPackageRequestType::0001-Activate +msgraph_beta.generated.models.CopilotPackageRequestType::0002-Access +msgraph_beta.generated.models.CopilotPackageRequestType::0003-Update +msgraph_beta.generated.models.CopilotPackageRequestType::0004-UnknownFutureValue msgraph_beta.generated.models.CopilotPeopleAdminSetting-->Entity msgraph_beta.generated.models.CopilotPeopleAdminSetting::|public|constructor():None msgraph_beta.generated.models.CopilotPeopleAdminSetting::|public|enhanced_personalization():EnhancedPersonalizationSetting @@ -198710,8 +198309,6 @@ msgraph_beta.generated.models.DeletedChatCollectionResponse::|static|public|crea msgraph_beta.generated.models.DeletedItemContainer-->Entity msgraph_beta.generated.models.DeletedItemContainer::|public|constructor():None msgraph_beta.generated.models.DeletedItemContainer::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.DeletedItemContainer::|public|lifecycle_policies():list[LifecyclePolicy] -msgraph_beta.generated.models.DeletedItemContainer::|public|lifecycle_policies(value:list[LifecyclePolicy]):None msgraph_beta.generated.models.DeletedItemContainer::|public|odata_type:str msgraph_beta.generated.models.DeletedItemContainer::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.DeletedItemContainer::|public|workflows():list[Workflow] @@ -203717,6 +203314,7 @@ msgraph_beta.generated.models.DeviceManagementConfigurationTemplateFamily::0014- msgraph_beta.generated.models.DeviceManagementConfigurationTemplateFamily::0015-WindowsOsRecoveryPolicies msgraph_beta.generated.models.DeviceManagementConfigurationTemplateFamily::0016-CompanyPortal msgraph_beta.generated.models.DeviceManagementConfigurationTemplateFamily::0017-WindowsRecoveryAndRemediationConfiguration +msgraph_beta.generated.models.DeviceManagementConfigurationTemplateFamily::0018-MaintenanceWindows msgraph_beta.generated.models.DeviceManagementConfigurationWindowsSettingApplicability-->DeviceManagementConfigurationSettingApplicability msgraph_beta.generated.models.DeviceManagementConfigurationWindowsSettingApplicability::|public|configuration_service_provider_version():str msgraph_beta.generated.models.DeviceManagementConfigurationWindowsSettingApplicability::|public|configuration_service_provider_version(value:str):None @@ -206240,6 +205838,36 @@ msgraph_beta.generated.models.DowngradeJustification::|public|odata_type(value:s msgraph_beta.generated.models.DowngradeJustification::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.DowngradeJustification::|static|public|create_from_discriminator_value(parse_node:ParseNode):DowngradeJustification msgraph_beta.generated.models.DowngradeJustification~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|backing_store:BackingStore +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|constructor():None +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|display_name():str +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|display_name(value:str):None +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|identifier():str +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|identifier(value:str):None +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|odata_type():str +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|odata_type(value:str):None +msgraph_beta.generated.models.DriftAccessPackageInfo::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.DriftAccessPackageInfo::|static|public|create_from_discriminator_value(parse_node:ParseNode):DriftAccessPackageInfo +msgraph_beta.generated.models.DriftAccessPackageInfo~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.DriftCounts::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.DriftCounts::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.DriftCounts::|public|backing_store:BackingStore +msgraph_beta.generated.models.DriftCounts::|public|constructor():None +msgraph_beta.generated.models.DriftCounts::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.DriftCounts::|public|missing():int +msgraph_beta.generated.models.DriftCounts::|public|missing(value:int):None +msgraph_beta.generated.models.DriftCounts::|public|odata_type():str +msgraph_beta.generated.models.DriftCounts::|public|odata_type(value:str):None +msgraph_beta.generated.models.DriftCounts::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.DriftCounts::|public|total():int +msgraph_beta.generated.models.DriftCounts::|public|total(value:int):None +msgraph_beta.generated.models.DriftCounts::|public|unauthorized():int +msgraph_beta.generated.models.DriftCounts::|public|unauthorized(value:int):None +msgraph_beta.generated.models.DriftCounts::|static|public|create_from_discriminator_value(parse_node:ParseNode):DriftCounts +msgraph_beta.generated.models.DriftCounts~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.DriftedProperty::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.DriftedProperty::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.DriftedProperty::|public|backing_store:BackingStore @@ -206252,6 +205880,42 @@ msgraph_beta.generated.models.DriftedProperty::|public|property_name(value:str): msgraph_beta.generated.models.DriftedProperty::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.DriftedProperty::|static|public|create_from_discriminator_value(parse_node:ParseNode):DriftedProperty msgraph_beta.generated.models.DriftedProperty~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.DriftIdentityInfo::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.DriftIdentityInfo::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.DriftIdentityInfo::|public|backing_store:BackingStore +msgraph_beta.generated.models.DriftIdentityInfo::|public|constructor():None +msgraph_beta.generated.models.DriftIdentityInfo::|public|display_name():str +msgraph_beta.generated.models.DriftIdentityInfo::|public|display_name(value:str):None +msgraph_beta.generated.models.DriftIdentityInfo::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.DriftIdentityInfo::|public|identifier():str +msgraph_beta.generated.models.DriftIdentityInfo::|public|identifier(value:str):None +msgraph_beta.generated.models.DriftIdentityInfo::|public|odata_type():str +msgraph_beta.generated.models.DriftIdentityInfo::|public|odata_type(value:str):None +msgraph_beta.generated.models.DriftIdentityInfo::|public|principal_name():str +msgraph_beta.generated.models.DriftIdentityInfo::|public|principal_name(value:str):None +msgraph_beta.generated.models.DriftIdentityInfo::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.DriftIdentityInfo::|static|public|create_from_discriminator_value(parse_node:ParseNode):DriftIdentityInfo +msgraph_beta.generated.models.DriftIdentityInfo~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.DriftResourceInfo::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.DriftResourceInfo::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.DriftResourceInfo::|public|backing_store:BackingStore +msgraph_beta.generated.models.DriftResourceInfo::|public|catalog_identifier():str +msgraph_beta.generated.models.DriftResourceInfo::|public|catalog_identifier(value:str):None +msgraph_beta.generated.models.DriftResourceInfo::|public|catalog_name():str +msgraph_beta.generated.models.DriftResourceInfo::|public|catalog_name(value:str):None +msgraph_beta.generated.models.DriftResourceInfo::|public|constructor():None +msgraph_beta.generated.models.DriftResourceInfo::|public|display_name():str +msgraph_beta.generated.models.DriftResourceInfo::|public|display_name(value:str):None +msgraph_beta.generated.models.DriftResourceInfo::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.DriftResourceInfo::|public|identifier():str +msgraph_beta.generated.models.DriftResourceInfo::|public|identifier(value:str):None +msgraph_beta.generated.models.DriftResourceInfo::|public|odata_type():str +msgraph_beta.generated.models.DriftResourceInfo::|public|odata_type(value:str):None +msgraph_beta.generated.models.DriftResourceInfo::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.DriftResourceInfo::|public|type():AccessDriftResourceType +msgraph_beta.generated.models.DriftResourceInfo::|public|type(value:AccessDriftResourceType):None +msgraph_beta.generated.models.DriftResourceInfo::|static|public|create_from_discriminator_value(parse_node:ParseNode):DriftResourceInfo +msgraph_beta.generated.models.DriftResourceInfo~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.DriftStatus::0000-Active msgraph_beta.generated.models.DriftStatus::0001-Fixed msgraph_beta.generated.models.DriftStatus::0002-UnknownFutureValue @@ -208904,6 +208568,8 @@ msgraph_beta.generated.models.EmbeddedSIMDeviceStateValue::0007-RemovedByUser msgraph_beta.generated.models.EmbeddingInput::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.EmbeddingInput::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.EmbeddingInput::|public|backing_store:BackingStore +msgraph_beta.generated.models.EmbeddingInput::|public|chunk_offsets():ChunkOffsets +msgraph_beta.generated.models.EmbeddingInput::|public|chunk_offsets(value:ChunkOffsets):None msgraph_beta.generated.models.EmbeddingInput::|public|constructor():None msgraph_beta.generated.models.EmbeddingInput::|public|data():str msgraph_beta.generated.models.EmbeddingInput::|public|data(value:str):None @@ -209832,6 +209498,24 @@ msgraph_beta.generated.models.Entra::|public|serialize(writer:SerializationWrite msgraph_beta.generated.models.Entra::|public|ux_setting():UxSetting msgraph_beta.generated.models.Entra::|public|ux_setting(value:UxSetting):None msgraph_beta.generated.models.Entra::|static|public|create_from_discriminator_value(parse_node:ParseNode):Entra +msgraph_beta.generated.models.EntraAccessDriftDetail-->AccessDriftDetail +msgraph_beta.generated.models.EntraAccessDriftDetail::|public|access_package():DriftAccessPackageInfo +msgraph_beta.generated.models.EntraAccessDriftDetail::|public|access_package(value:DriftAccessPackageInfo):None +msgraph_beta.generated.models.EntraAccessDriftDetail::|public|assigned_role():str +msgraph_beta.generated.models.EntraAccessDriftDetail::|public|assigned_role(value:str):None +msgraph_beta.generated.models.EntraAccessDriftDetail::|public|constructor():None +msgraph_beta.generated.models.EntraAccessDriftDetail::|public|expected_role():str +msgraph_beta.generated.models.EntraAccessDriftDetail::|public|expected_role(value:str):None +msgraph_beta.generated.models.EntraAccessDriftDetail::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.EntraAccessDriftDetail::|public|odata_type:str +msgraph_beta.generated.models.EntraAccessDriftDetail::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.EntraAccessDriftDetail::|static|public|create_from_discriminator_value(parse_node:ParseNode):EntraAccessDriftDetail +msgraph_beta.generated.models.EntraDriftIdentityInfo-->DriftIdentityInfo +msgraph_beta.generated.models.EntraDriftIdentityInfo::|public|constructor():None +msgraph_beta.generated.models.EntraDriftIdentityInfo::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.EntraDriftIdentityInfo::|public|odata_type:str +msgraph_beta.generated.models.EntraDriftIdentityInfo::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.EntraDriftIdentityInfo::|static|public|create_from_discriminator_value(parse_node:ParseNode):EntraDriftIdentityInfo msgraph_beta.generated.models.EntraIdProtectionRiskyUserApproval-->ControlConfiguration msgraph_beta.generated.models.EntraIdProtectionRiskyUserApproval::|public|constructor():None msgraph_beta.generated.models.EntraIdProtectionRiskyUserApproval::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -210590,6 +210274,7 @@ msgraph_beta.generated.models.ExchangeMessageTraceStatus::0004-Expanded msgraph_beta.generated.models.ExchangeMessageTraceStatus::0005-Quarantined msgraph_beta.generated.models.ExchangeMessageTraceStatus::0006-FilteredAsSpam msgraph_beta.generated.models.ExchangeMessageTraceStatus::0007-UnknownFutureValue +msgraph_beta.generated.models.ExchangeMessageTraceStatus::0008-Recalled msgraph_beta.generated.models.ExchangeOnlineCrossTenantMigrationSettings::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.ExchangeOnlineCrossTenantMigrationSettings::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.ExchangeOnlineCrossTenantMigrationSettings::|public|backing_store:BackingStore @@ -213962,6 +213647,12 @@ msgraph_beta.generated.models.GroupCollectionResponse::|public|serialize(writer: msgraph_beta.generated.models.GroupCollectionResponse::|public|value():list[Group] msgraph_beta.generated.models.GroupCollectionResponse::|public|value(value:list[Group]):None msgraph_beta.generated.models.GroupCollectionResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):GroupCollectionResponse +msgraph_beta.generated.models.GroupDriftResourceInfo-->DriftResourceInfo +msgraph_beta.generated.models.GroupDriftResourceInfo::|public|constructor():None +msgraph_beta.generated.models.GroupDriftResourceInfo::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.GroupDriftResourceInfo::|public|odata_type:str +msgraph_beta.generated.models.GroupDriftResourceInfo::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.GroupDriftResourceInfo::|static|public|create_from_discriminator_value(parse_node:ParseNode):GroupDriftResourceInfo msgraph_beta.generated.models.GroupFilter::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.GroupFilter::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.GroupFilter::|public|backing_store:BackingStore @@ -215737,42 +215428,6 @@ msgraph_beta.generated.models.identityGovernance.ActivationTaskScopeType::0002-U msgraph_beta.generated.models.identityGovernance.ActivationUserScopeType::0000-AllUsers msgraph_beta.generated.models.identityGovernance.ActivationUserScopeType::0001-FailedUsers msgraph_beta.generated.models.identityGovernance.ActivationUserScopeType::0002-UnknownFutureValue -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecycle-->IdentityLifecycle -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecycle::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecycle::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecycle::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecycle::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecycle::|static|public|create_from_discriminator_value(parse_node:ParseNode):AgentIdentityLifecycle -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecyclePolicy-->LifecyclePolicy -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecyclePolicy::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecyclePolicy::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecyclePolicy::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecyclePolicy::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.AgentIdentityLifecyclePolicy::|static|public|create_from_discriminator_value(parse_node:ParseNode):AgentIdentityLifecyclePolicy -msgraph_beta.generated.models.identityGovernance.AllExcludingGroupsSubjectSet-->SubjectSet -msgraph_beta.generated.models.identityGovernance.AllExcludingGroupsSubjectSet::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.AllExcludingGroupsSubjectSet::|public|excluded_groups():list[Group] -msgraph_beta.generated.models.identityGovernance.AllExcludingGroupsSubjectSet::|public|excluded_groups(value:list[Group]):None -msgraph_beta.generated.models.identityGovernance.AllExcludingGroupsSubjectSet::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.AllExcludingGroupsSubjectSet::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.AllExcludingGroupsSubjectSet::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.AllExcludingGroupsSubjectSet::|static|public|create_from_discriminator_value(parse_node:ParseNode):AllExcludingGroupsSubjectSet -msgraph_beta.generated.models.identityGovernance.AllExcludingSpecificObjectsSubjectSet-->SubjectSet -msgraph_beta.generated.models.identityGovernance.AllExcludingSpecificObjectsSubjectSet::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.AllExcludingSpecificObjectsSubjectSet::|public|excluded_objects():list[DirectoryObject] -msgraph_beta.generated.models.identityGovernance.AllExcludingSpecificObjectsSubjectSet::|public|excluded_objects(value:list[DirectoryObject]):None -msgraph_beta.generated.models.identityGovernance.AllExcludingSpecificObjectsSubjectSet::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.AllExcludingSpecificObjectsSubjectSet::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.AllExcludingSpecificObjectsSubjectSet::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.AllExcludingSpecificObjectsSubjectSet::|static|public|create_from_discriminator_value(parse_node:ParseNode):AllExcludingSpecificObjectsSubjectSet -msgraph_beta.generated.models.identityGovernance.AttestationComplianceIssue-->ComplianceIssue -msgraph_beta.generated.models.identityGovernance.AttestationComplianceIssue::|public|attestation_block_reasons():list[str] -msgraph_beta.generated.models.identityGovernance.AttestationComplianceIssue::|public|attestation_block_reasons(value:list[str]):None -msgraph_beta.generated.models.identityGovernance.AttestationComplianceIssue::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.AttestationComplianceIssue::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.AttestationComplianceIssue::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.AttestationComplianceIssue::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.AttestationComplianceIssue::|static|public|create_from_discriminator_value(parse_node:ParseNode):AttestationComplianceIssue msgraph_beta.generated.models.identityGovernance.AttributeChangeTrigger-->WorkflowExecutionTrigger msgraph_beta.generated.models.identityGovernance.AttributeChangeTrigger::|public|constructor():None msgraph_beta.generated.models.identityGovernance.AttributeChangeTrigger::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -215829,27 +215484,6 @@ msgraph_beta.generated.models.identityGovernance.CancelScope::|public|odata_type msgraph_beta.generated.models.identityGovernance.CancelScope::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.identityGovernance.CancelScope::|static|public|create_from_discriminator_value(parse_node:ParseNode):CancelScope msgraph_beta.generated.models.identityGovernance.CancelScope~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.models.identityGovernance.ComplianceIssue-->Entity -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|description():str -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|description(value:str):None -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|governing_policy_reference_id():str -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|governing_policy_reference_id(value:str):None -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|issue_code():str -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|issue_code(value:str):None -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|rule_type():str -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|rule_type(value:str):None -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.ComplianceIssue::|static|public|create_from_discriminator_value(parse_node:ParseNode):ComplianceIssue -msgraph_beta.generated.models.identityGovernance.ComplianceIssueCollectionResponse-->BaseCollectionPaginationCountResponse -msgraph_beta.generated.models.identityGovernance.ComplianceIssueCollectionResponse::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.ComplianceIssueCollectionResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.ComplianceIssueCollectionResponse::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.ComplianceIssueCollectionResponse::|public|value():list[ComplianceIssue] -msgraph_beta.generated.models.identityGovernance.ComplianceIssueCollectionResponse::|public|value(value:list[ComplianceIssue]):None -msgraph_beta.generated.models.identityGovernance.ComplianceIssueCollectionResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):ComplianceIssueCollectionResponse msgraph_beta.generated.models.identityGovernance.CountBasedQuarantineCondition-->QuarantineCondition msgraph_beta.generated.models.identityGovernance.CountBasedQuarantineCondition::|public|constructor():None msgraph_beta.generated.models.identityGovernance.CountBasedQuarantineCondition::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -215934,12 +215568,6 @@ msgraph_beta.generated.models.identityGovernance.CustomTaskExtensionResponseData msgraph_beta.generated.models.identityGovernance.CustomTaskExtensionResponseData::|public|target_subject():WorkflowSubject msgraph_beta.generated.models.identityGovernance.CustomTaskExtensionResponseData::|public|target_subject(value:WorkflowSubject):None msgraph_beta.generated.models.identityGovernance.CustomTaskExtensionResponseData::|static|public|create_from_discriminator_value(parse_node:ParseNode):CustomTaskExtensionResponseData -msgraph_beta.generated.models.identityGovernance.DeleteOnlyEnforcementAction-->LifecyclePolicyEnforcementAction -msgraph_beta.generated.models.identityGovernance.DeleteOnlyEnforcementAction::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.DeleteOnlyEnforcementAction::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.DeleteOnlyEnforcementAction::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.DeleteOnlyEnforcementAction::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.DeleteOnlyEnforcementAction::|static|public|create_from_discriminator_value(parse_node:ParseNode):DeleteOnlyEnforcementAction msgraph_beta.generated.models.identityGovernance.DirectoryObjectWorkflowSubject-->WorkflowSubject msgraph_beta.generated.models.identityGovernance.DirectoryObjectWorkflowSubject::|public|constructor():None msgraph_beta.generated.models.identityGovernance.DirectoryObjectWorkflowSubject::|public|directory_object():DirectoryObject @@ -215948,20 +215576,6 @@ msgraph_beta.generated.models.identityGovernance.DirectoryObjectWorkflowSubject: msgraph_beta.generated.models.identityGovernance.DirectoryObjectWorkflowSubject::|public|odata_type:str msgraph_beta.generated.models.identityGovernance.DirectoryObjectWorkflowSubject::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.identityGovernance.DirectoryObjectWorkflowSubject::|static|public|create_from_discriminator_value(parse_node:ParseNode):DirectoryObjectWorkflowSubject -msgraph_beta.generated.models.identityGovernance.DisableOnlyEnforcementAction-->LifecyclePolicyEnforcementAction -msgraph_beta.generated.models.identityGovernance.DisableOnlyEnforcementAction::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.DisableOnlyEnforcementAction::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.DisableOnlyEnforcementAction::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.DisableOnlyEnforcementAction::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.DisableOnlyEnforcementAction::|static|public|create_from_discriminator_value(parse_node:ParseNode):DisableOnlyEnforcementAction -msgraph_beta.generated.models.identityGovernance.DisableThenDeleteEnforcementAction-->LifecyclePolicyEnforcementAction -msgraph_beta.generated.models.identityGovernance.DisableThenDeleteEnforcementAction::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.DisableThenDeleteEnforcementAction::|public|deletion_grace_period_in_days():int -msgraph_beta.generated.models.identityGovernance.DisableThenDeleteEnforcementAction::|public|deletion_grace_period_in_days(value:int):None -msgraph_beta.generated.models.identityGovernance.DisableThenDeleteEnforcementAction::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.DisableThenDeleteEnforcementAction::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.DisableThenDeleteEnforcementAction::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.DisableThenDeleteEnforcementAction::|static|public|create_from_discriminator_value(parse_node:ParseNode):DisableThenDeleteEnforcementAction msgraph_beta.generated.models.identityGovernance.GroupBasedSubjectSet-->SubjectSet msgraph_beta.generated.models.identityGovernance.GroupBasedSubjectSet::|public|constructor():None msgraph_beta.generated.models.identityGovernance.GroupBasedSubjectSet::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -216008,26 +215622,6 @@ msgraph_beta.generated.models.identityGovernance.IdentityGovernance::|public|ter msgraph_beta.generated.models.identityGovernance.IdentityGovernance::|public|terms_of_use(value:TermsOfUseContainer):None msgraph_beta.generated.models.identityGovernance.IdentityGovernance::|static|public|create_from_discriminator_value(parse_node:ParseNode):IdentityGovernance msgraph_beta.generated.models.identityGovernance.IdentityGovernance~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle-->Entity -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|public|compliance_issues():list[ComplianceIssue] -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|public|compliance_issues(value:list[ComplianceIssue]):None -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|public|effective_governing_policy():LifecyclePolicy -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|public|effective_governing_policy(value:LifecyclePolicy):None -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|public|last_attestation_date_time():datetime.datetime -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|public|last_attestation_date_time(value:datetime.datetime):None -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.IdentityLifecycle::|static|public|create_from_discriminator_value(parse_node:ParseNode):IdentityLifecycle -msgraph_beta.generated.models.identityGovernance.InactivityRule-->LifecyclePolicyRule -msgraph_beta.generated.models.identityGovernance.InactivityRule::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.InactivityRule::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.InactivityRule::|public|last_activity_threshold_in_days():int -msgraph_beta.generated.models.identityGovernance.InactivityRule::|public|last_activity_threshold_in_days(value:int):None -msgraph_beta.generated.models.identityGovernance.InactivityRule::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.InactivityRule::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.InactivityRule::|static|public|create_from_discriminator_value(parse_node:ParseNode):InactivityRule msgraph_beta.generated.models.identityGovernance.Insights-->Entity msgraph_beta.generated.models.identityGovernance.Insights::|public|constructor():None msgraph_beta.generated.models.identityGovernance.Insights::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -216046,110 +215640,6 @@ msgraph_beta.generated.models.identityGovernance.LifecycleManagementSettings::|p msgraph_beta.generated.models.identityGovernance.LifecycleManagementSettings::|public|workflow_schedule_interval_in_hours():int msgraph_beta.generated.models.identityGovernance.LifecycleManagementSettings::|public|workflow_schedule_interval_in_hours(value:int):None msgraph_beta.generated.models.identityGovernance.LifecycleManagementSettings::|static|public|create_from_discriminator_value(parse_node:ParseNode):LifecycleManagementSettings -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy-->Entity -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|created_by():DirectoryObject -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|created_by(value:DirectoryObject):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|created_date_time():datetime.datetime -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|created_date_time(value:datetime.datetime):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|description():str -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|description(value:str):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|display_name():str -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|display_name(value:str):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|enforcement_action():LifecyclePolicyEnforcementAction -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|enforcement_action(value:LifecyclePolicyEnforcementAction):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|grace_period_in_days():int -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|grace_period_in_days(value:int):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|is_enabled():bool -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|is_enabled(value:bool):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|last_modified_by():DirectoryObject -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|last_modified_by(value:DirectoryObject):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|last_modified_date_time():datetime.datetime -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|last_modified_date_time(value:datetime.datetime):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|notification_schedule():LifecyclePolicyNotificationSettings -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|notification_schedule(value:LifecyclePolicyNotificationSettings):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|policy_source():LifecyclePolicySource -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|policy_source(value:LifecyclePolicySource):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|rules():list[LifecyclePolicyRule] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|rules(value:list[LifecyclePolicyRule]):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|scope():SubjectSet -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|scope(value:SubjectSet):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|versions():list[LifecyclePolicy] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|versions(value:list[LifecyclePolicy]):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|version_number():int -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|public|version_number(value:int):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicy::|static|public|create_from_discriminator_value(parse_node:ParseNode):LifecyclePolicy -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyCollectionResponse-->BaseCollectionPaginationCountResponse -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyCollectionResponse::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyCollectionResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyCollectionResponse::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyCollectionResponse::|public|value():list[LifecyclePolicy] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyCollectionResponse::|public|value(value:list[LifecyclePolicy]):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyCollectionResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):LifecyclePolicyCollectionResponse -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyEnforcementAction::|public|additional_data():dict[str, Any] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyEnforcementAction::|public|additional_data(value:dict[str, Any]):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyEnforcementAction::|public|backing_store:BackingStore -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyEnforcementAction::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyEnforcementAction::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyEnforcementAction::|public|odata_type():str -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyEnforcementAction::|public|odata_type(value:str):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyEnforcementAction::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyEnforcementAction::|static|public|create_from_discriminator_value(parse_node:ParseNode):LifecyclePolicyEnforcementAction -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyEnforcementAction~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|additional_data():dict[str, Any] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|additional_data(value:dict[str, Any]):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|additional_recipients():list[str] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|additional_recipients(value:list[str]):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|backing_store:BackingStore -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|is_enabled():bool -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|is_enabled(value:bool):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|odata_type():str -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|odata_type(value:str):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|offsets_after_non_compliance_in_days():list[int] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|offsets_after_non_compliance_in_days(value:list[int]):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings::|static|public|create_from_discriminator_value(parse_node:ParseNode):LifecyclePolicyNotificationSettings -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyNotificationSettings~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfiguration-->Entity -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfiguration::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfiguration::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfiguration::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfiguration::|public|ordered_policy_ids():list[str] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfiguration::|public|ordered_policy_ids(value:list[str]):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfiguration::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfiguration::|public|subject_type():SubjectType -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfiguration::|public|subject_type(value:SubjectType):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfiguration::|static|public|create_from_discriminator_value(parse_node:ParseNode):LifecyclePolicyPriorityConfiguration -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfigurationCollectionResponse-->BaseCollectionPaginationCountResponse -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfigurationCollectionResponse::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfigurationCollectionResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfigurationCollectionResponse::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfigurationCollectionResponse::|public|value():list[LifecyclePolicyPriorityConfiguration] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfigurationCollectionResponse::|public|value(value:list[LifecyclePolicyPriorityConfiguration]):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyPriorityConfigurationCollectionResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):LifecyclePolicyPriorityConfigurationCollectionResponse -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRule-->Entity -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRule::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRule::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRule::|public|is_enabled():bool -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRule::|public|is_enabled(value:bool):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRule::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRule::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRule::|static|public|create_from_discriminator_value(parse_node:ParseNode):LifecyclePolicyRule -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRuleCollectionResponse-->BaseCollectionPaginationCountResponse -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRuleCollectionResponse::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRuleCollectionResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRuleCollectionResponse::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRuleCollectionResponse::|public|value():list[LifecyclePolicyRule] -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRuleCollectionResponse::|public|value(value:list[LifecyclePolicyRule]):None -msgraph_beta.generated.models.identityGovernance.LifecyclePolicyRuleCollectionResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):LifecyclePolicyRuleCollectionResponse -msgraph_beta.generated.models.identityGovernance.LifecyclePolicySource::0000-UserCreated -msgraph_beta.generated.models.identityGovernance.LifecyclePolicySource::0001-SystemDefault -msgraph_beta.generated.models.identityGovernance.LifecyclePolicySource::0002-UnknownFutureValue msgraph_beta.generated.models.identityGovernance.LifecycleTaskCategory::0000-Joiner msgraph_beta.generated.models.identityGovernance.LifecycleTaskCategory::0001-Leaver msgraph_beta.generated.models.identityGovernance.LifecycleTaskCategory::0002-UnknownFutureValue @@ -216178,10 +215668,6 @@ msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|p msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|public|insights():Insights msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|public|insights(value:Insights):None -msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|public|lifecycle_policies():list[LifecyclePolicy] -msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|public|lifecycle_policies(value:list[LifecyclePolicy]):None -msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|public|lifecycle_policy_priority_configurations():list[LifecyclePolicyPriorityConfiguration] -msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|public|lifecycle_policy_priority_configurations(value:list[LifecyclePolicyPriorityConfiguration]):None msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|public|odata_type:str msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.identityGovernance.LifecycleWorkflowsContainer::|public|settings():LifecycleManagementSettings @@ -216213,6 +215699,32 @@ msgraph_beta.generated.models.identityGovernance.OnDemandExecutionOnly::|public| msgraph_beta.generated.models.identityGovernance.OnDemandExecutionOnly::|public|odata_type:str msgraph_beta.generated.models.identityGovernance.OnDemandExecutionOnly::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.identityGovernance.OnDemandExecutionOnly::|static|public|create_from_discriminator_value(parse_node:ParseNode):OnDemandExecutionOnly +msgraph_beta.generated.models.identityGovernance.OperatorBetween-->WorkflowTriggerTimeBasedOperator +msgraph_beta.generated.models.identityGovernance.OperatorBetween::|public|constructor():None +msgraph_beta.generated.models.identityGovernance.OperatorBetween::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.identityGovernance.OperatorBetween::|public|greater_than_offset_in_days():int +msgraph_beta.generated.models.identityGovernance.OperatorBetween::|public|greater_than_offset_in_days(value:int):None +msgraph_beta.generated.models.identityGovernance.OperatorBetween::|public|less_than_offset_in_days():int +msgraph_beta.generated.models.identityGovernance.OperatorBetween::|public|less_than_offset_in_days(value:int):None +msgraph_beta.generated.models.identityGovernance.OperatorBetween::|public|odata_type:str +msgraph_beta.generated.models.identityGovernance.OperatorBetween::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.identityGovernance.OperatorBetween::|static|public|create_from_discriminator_value(parse_node:ParseNode):OperatorBetween +msgraph_beta.generated.models.identityGovernance.OperatorEqualTo-->WorkflowTriggerTimeBasedOperator +msgraph_beta.generated.models.identityGovernance.OperatorEqualTo::|public|constructor():None +msgraph_beta.generated.models.identityGovernance.OperatorEqualTo::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.identityGovernance.OperatorEqualTo::|public|odata_type:str +msgraph_beta.generated.models.identityGovernance.OperatorEqualTo::|public|offset_in_days():int +msgraph_beta.generated.models.identityGovernance.OperatorEqualTo::|public|offset_in_days(value:int):None +msgraph_beta.generated.models.identityGovernance.OperatorEqualTo::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.identityGovernance.OperatorEqualTo::|static|public|create_from_discriminator_value(parse_node:ParseNode):OperatorEqualTo +msgraph_beta.generated.models.identityGovernance.OperatorLessThanEqualTo-->WorkflowTriggerTimeBasedOperator +msgraph_beta.generated.models.identityGovernance.OperatorLessThanEqualTo::|public|constructor():None +msgraph_beta.generated.models.identityGovernance.OperatorLessThanEqualTo::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.identityGovernance.OperatorLessThanEqualTo::|public|odata_type:str +msgraph_beta.generated.models.identityGovernance.OperatorLessThanEqualTo::|public|offset_in_days():int +msgraph_beta.generated.models.identityGovernance.OperatorLessThanEqualTo::|public|offset_in_days(value:int):None +msgraph_beta.generated.models.identityGovernance.OperatorLessThanEqualTo::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.identityGovernance.OperatorLessThanEqualTo::|static|public|create_from_discriminator_value(parse_node:ParseNode):OperatorLessThanEqualTo msgraph_beta.generated.models.identityGovernance.Parameter::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.identityGovernance.Parameter::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.identityGovernance.Parameter::|public|backing_store:BackingStore @@ -216237,14 +215749,6 @@ msgraph_beta.generated.models.identityGovernance.PercentageBasedQuarantineCondit msgraph_beta.generated.models.identityGovernance.PercentageBasedQuarantineCondition::|public|percentage(value:int):None msgraph_beta.generated.models.identityGovernance.PercentageBasedQuarantineCondition::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.identityGovernance.PercentageBasedQuarantineCondition::|static|public|create_from_discriminator_value(parse_node:ParseNode):PercentageBasedQuarantineCondition -msgraph_beta.generated.models.identityGovernance.PeriodicAttestationRule-->LifecyclePolicyRule -msgraph_beta.generated.models.identityGovernance.PeriodicAttestationRule::|public|attestation_interval_in_days():int -msgraph_beta.generated.models.identityGovernance.PeriodicAttestationRule::|public|attestation_interval_in_days(value:int):None -msgraph_beta.generated.models.identityGovernance.PeriodicAttestationRule::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.PeriodicAttestationRule::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.PeriodicAttestationRule::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.PeriodicAttestationRule::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.PeriodicAttestationRule::|static|public|create_from_discriminator_value(parse_node:ParseNode):PeriodicAttestationRule msgraph_beta.generated.models.identityGovernance.PreviewFailedTask::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.identityGovernance.PreviewFailedTask::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.identityGovernance.PreviewFailedTask::|public|backing_store:BackingStore @@ -216401,22 +215905,6 @@ msgraph_beta.generated.models.identityGovernance.RunSummary::|public|total_users msgraph_beta.generated.models.identityGovernance.RunSummary::|public|total_users(value:int):None msgraph_beta.generated.models.identityGovernance.RunSummary::|static|public|create_from_discriminator_value(parse_node:ParseNode):RunSummary msgraph_beta.generated.models.identityGovernance.RunSummary~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.models.identityGovernance.SelectedObjectsSubjectSet-->SubjectSet -msgraph_beta.generated.models.identityGovernance.SelectedObjectsSubjectSet::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.SelectedObjectsSubjectSet::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.SelectedObjectsSubjectSet::|public|in_scope_objects():list[DirectoryObject] -msgraph_beta.generated.models.identityGovernance.SelectedObjectsSubjectSet::|public|in_scope_objects(value:list[DirectoryObject]):None -msgraph_beta.generated.models.identityGovernance.SelectedObjectsSubjectSet::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.SelectedObjectsSubjectSet::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.SelectedObjectsSubjectSet::|static|public|create_from_discriminator_value(parse_node:ParseNode):SelectedObjectsSubjectSet -msgraph_beta.generated.models.identityGovernance.SponsorPresenceRule-->LifecyclePolicyRule -msgraph_beta.generated.models.identityGovernance.SponsorPresenceRule::|public|constructor():None -msgraph_beta.generated.models.identityGovernance.SponsorPresenceRule::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.identityGovernance.SponsorPresenceRule::|public|minimum_sponsor_count():int -msgraph_beta.generated.models.identityGovernance.SponsorPresenceRule::|public|minimum_sponsor_count(value:int):None -msgraph_beta.generated.models.identityGovernance.SponsorPresenceRule::|public|odata_type:str -msgraph_beta.generated.models.identityGovernance.SponsorPresenceRule::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.identityGovernance.SponsorPresenceRule::|static|public|create_from_discriminator_value(parse_node:ParseNode):SponsorPresenceRule msgraph_beta.generated.models.identityGovernance.SubjectProcessingResult-->Entity msgraph_beta.generated.models.identityGovernance.SubjectProcessingResult::|public|completed_date_time():datetime.datetime msgraph_beta.generated.models.identityGovernance.SubjectProcessingResult::|public|completed_date_time(value:datetime.datetime):None @@ -216632,6 +216120,16 @@ msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTrigger::|pub msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTrigger::|public|time_based_attribute():WorkflowTriggerTimeBasedAttribute msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTrigger::|public|time_based_attribute(value:WorkflowTriggerTimeBasedAttribute):None msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTrigger::|static|public|create_from_discriminator_value(parse_node:ParseNode):TimeBasedAttributeTrigger +msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTriggerV2-->WorkflowExecutionTrigger +msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTriggerV2::|public|attribute():str +msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTriggerV2::|public|attribute(value:str):None +msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTriggerV2::|public|constructor():None +msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTriggerV2::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTriggerV2::|public|odata_type:str +msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTriggerV2::|public|operator():WorkflowExecutionTriggerOperator +msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTriggerV2::|public|operator(value:WorkflowExecutionTriggerOperator):None +msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTriggerV2::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.identityGovernance.TimeBasedAttributeTriggerV2::|static|public|create_from_discriminator_value(parse_node:ParseNode):TimeBasedAttributeTriggerV2 msgraph_beta.generated.models.identityGovernance.TopTasksInsightsSummary::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.identityGovernance.TopTasksInsightsSummary::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.identityGovernance.TopTasksInsightsSummary::|public|backing_store:BackingStore @@ -216874,6 +216372,16 @@ msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTrigger::|publ msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTrigger::|public|odata_type(value:str):None msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTrigger::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTrigger::|static|public|create_from_discriminator_value(parse_node:ParseNode):WorkflowExecutionTrigger +msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTriggerOperator::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTriggerOperator::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTriggerOperator::|public|backing_store:BackingStore +msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTriggerOperator::|public|constructor():None +msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTriggerOperator::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTriggerOperator::|public|odata_type():str +msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTriggerOperator::|public|odata_type(value:str):None +msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTriggerOperator::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTriggerOperator::|static|public|create_from_discriminator_value(parse_node:ParseNode):WorkflowExecutionTriggerOperator +msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTriggerOperator~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.identityGovernance.WorkflowExecutionTrigger~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.identityGovernance.WorkflowExecutionType::0000-Scheduled msgraph_beta.generated.models.identityGovernance.WorkflowExecutionType::0001-OnDemand @@ -216982,10 +216490,22 @@ msgraph_beta.generated.models.identityGovernance.WorkflowTemplateCollectionRespo msgraph_beta.generated.models.identityGovernance.WorkflowTemplateCollectionResponse::|public|value():list[WorkflowTemplate] msgraph_beta.generated.models.identityGovernance.WorkflowTemplateCollectionResponse::|public|value(value:list[WorkflowTemplate]):None msgraph_beta.generated.models.identityGovernance.WorkflowTemplateCollectionResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):WorkflowTemplateCollectionResponse +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerOperatorEventTiming::0000-Before +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerOperatorEventTiming::0001-After +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerOperatorEventTiming::0002-On +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerOperatorEventTiming::0003-UnknownFutureValue msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedAttribute::0000-EmployeeHireDate msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedAttribute::0001-EmployeeLeaveDateTime msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedAttribute::0002-UnknownFutureValue msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedAttribute::0003-CreatedDateTime +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedOperator-->WorkflowExecutionTriggerOperator +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedOperator::|public|constructor():None +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedOperator::|public|event_timing():WorkflowTriggerOperatorEventTiming +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedOperator::|public|event_timing(value:WorkflowTriggerOperatorEventTiming):None +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedOperator::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedOperator::|public|odata_type:str +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedOperator::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.identityGovernance.WorkflowTriggerTimeBasedOperator::|static|public|create_from_discriminator_value(parse_node:ParseNode):WorkflowTriggerTimeBasedOperator msgraph_beta.generated.models.identityGovernance.WorkflowVersion-->WorkflowBase msgraph_beta.generated.models.identityGovernance.WorkflowVersion::|public|constructor():None msgraph_beta.generated.models.identityGovernance.WorkflowVersion::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -218887,6 +218407,18 @@ msgraph_beta.generated.models.IntendedPurpose::0001-SmimeEncryption msgraph_beta.generated.models.IntendedPurpose::0002-SmimeSigning msgraph_beta.generated.models.IntendedPurpose::0003-Vpn msgraph_beta.generated.models.IntendedPurpose::0004-Wifi +msgraph_beta.generated.models.InteractionParticipant::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.InteractionParticipant::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.InteractionParticipant::|public|backing_store:BackingStore +msgraph_beta.generated.models.InteractionParticipant::|public|constructor():None +msgraph_beta.generated.models.InteractionParticipant::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.InteractionParticipant::|public|odata_type():str +msgraph_beta.generated.models.InteractionParticipant::|public|odata_type(value:str):None +msgraph_beta.generated.models.InteractionParticipant::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.InteractionParticipant::|public|value():str +msgraph_beta.generated.models.InteractionParticipant::|public|value(value:str):None +msgraph_beta.generated.models.InteractionParticipant::|static|public|create_from_discriminator_value(parse_node:ParseNode):InteractionParticipant +msgraph_beta.generated.models.InteractionParticipant~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.InternalDomainFederation-->SamlOrWsFedProvider msgraph_beta.generated.models.InternalDomainFederation::|public|active_sign_in_uri():str msgraph_beta.generated.models.InternalDomainFederation::|public|active_sign_in_uri(value:str):None @@ -222734,6 +222266,12 @@ msgraph_beta.generated.models.LocalAdminSettings::|public|registering_users(valu msgraph_beta.generated.models.LocalAdminSettings::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.LocalAdminSettings::|static|public|create_from_discriminator_value(parse_node:ParseNode):LocalAdminSettings msgraph_beta.generated.models.LocalAdminSettings~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.LocalDriftIdentityInfo-->DriftIdentityInfo +msgraph_beta.generated.models.LocalDriftIdentityInfo::|public|constructor():None +msgraph_beta.generated.models.LocalDriftIdentityInfo::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.LocalDriftIdentityInfo::|public|odata_type:str +msgraph_beta.generated.models.LocalDriftIdentityInfo::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.LocalDriftIdentityInfo::|static|public|create_from_discriminator_value(parse_node:ParseNode):LocalDriftIdentityInfo msgraph_beta.generated.models.LocaleInfo::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.LocaleInfo::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.LocaleInfo::|public|backing_store:BackingStore @@ -230958,8 +230496,26 @@ msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|mac_enabled( msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|microsoft_defender_for_endpoint_attach_enabled():bool msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|microsoft_defender_for_endpoint_attach_enabled(value:bool):None msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|odata_type:str +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_display_name():str +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_display_name(value:str):None +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_minimum_supported_android_version():str +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_minimum_supported_android_version(value:str):None +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_minimum_supported_ios_version():str +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_minimum_supported_ios_version(value:str):None +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_minimum_supported_mac_version():str +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_minimum_supported_mac_version(value:str):None +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_minimum_supported_windows_version():str +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_minimum_supported_windows_version(value:str):None msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_state():MobileThreatPartnerTenantState msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_state(value:MobileThreatPartnerTenantState):None +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_supports_android_mam():bool +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_supports_android_mam(value:bool):None +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_supports_ios_certificate_sync():bool +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_supports_ios_certificate_sync(value:bool):None +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_supports_ios_mam():bool +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_supports_ios_mam(value:bool):None +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_supports_windows_mam():bool +msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_supports_windows_mam(value:bool):None msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_unresponsiveness_threshold_in_days():int msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_unresponsiveness_threshold_in_days(value:int):None msgraph_beta.generated.models.MobileThreatDefenseConnector::|public|partner_unsupported_os_version_blocked():bool @@ -230988,7 +230544,8 @@ msgraph_beta.generated.models.MobileThreatPartnerTenantState::0002-Enabled msgraph_beta.generated.models.MobileThreatPartnerTenantState::0003-Unresponsive msgraph_beta.generated.models.MobileThreatPartnerTenantState::0004-NotSetUp msgraph_beta.generated.models.MobileThreatPartnerTenantState::0005-Error -msgraph_beta.generated.models.MobileThreatPartnerTenantState::0006-UnknownFutureValue +msgraph_beta.generated.models.MobileThreatPartnerTenantState::0006-NeverConfigured +msgraph_beta.generated.models.MobileThreatPartnerTenantState::0007-UnknownFutureValue msgraph_beta.generated.models.MobilityManagementPolicy-->Entity msgraph_beta.generated.models.MobilityManagementPolicy::|public|applies_to():PolicyScope msgraph_beta.generated.models.MobilityManagementPolicy::|public|applies_to(value:PolicyScope):None @@ -236916,6 +236473,8 @@ msgraph_beta.generated.models.Organization::|public|privacy_profile():PrivacyPro msgraph_beta.generated.models.Organization::|public|privacy_profile(value:PrivacyProfile):None msgraph_beta.generated.models.Organization::|public|provisioned_plans():list[ProvisionedPlan] msgraph_beta.generated.models.Organization::|public|provisioned_plans(value:list[ProvisionedPlan]):None +msgraph_beta.generated.models.Organization::|public|resource_quotas():list[ResourceQuota] +msgraph_beta.generated.models.Organization::|public|resource_quotas(value:list[ResourceQuota]):None msgraph_beta.generated.models.Organization::|public|security_compliance_notification_mails():list[str] msgraph_beta.generated.models.Organization::|public|security_compliance_notification_mails(value:list[str]):None msgraph_beta.generated.models.Organization::|public|security_compliance_notification_phones():list[str] @@ -239793,6 +239352,8 @@ msgraph_beta.generated.models.Place::|public|check_ins(value:list[CheckInClaim]) msgraph_beta.generated.models.Place::|public|children():list[Place] msgraph_beta.generated.models.Place::|public|children(value:list[Place]):None msgraph_beta.generated.models.Place::|public|constructor():None +msgraph_beta.generated.models.Place::|public|custom_properties():StringDictionary +msgraph_beta.generated.models.Place::|public|custom_properties(value:StringDictionary):None msgraph_beta.generated.models.Place::|public|display_name():str msgraph_beta.generated.models.Place::|public|display_name(value:str):None msgraph_beta.generated.models.Place::|public|geo_coordinates():OutlookGeoCoordinates @@ -239802,6 +239363,8 @@ msgraph_beta.generated.models.Place::|public|is_wheel_chair_accessible():bool msgraph_beta.generated.models.Place::|public|is_wheel_chair_accessible(value:bool):None msgraph_beta.generated.models.Place::|public|label():str msgraph_beta.generated.models.Place::|public|label(value:str):None +msgraph_beta.generated.models.Place::|public|last_updated_time():datetime.datetime +msgraph_beta.generated.models.Place::|public|last_updated_time(value:datetime.datetime):None msgraph_beta.generated.models.Place::|public|odata_type:str msgraph_beta.generated.models.Place::|public|parent_id():str msgraph_beta.generated.models.Place::|public|parent_id(value:str):None @@ -241256,6 +240819,14 @@ msgraph_beta.generated.models.PolicyLocation::|public|serialize(writer:Serializa msgraph_beta.generated.models.PolicyLocation::|public|value():str msgraph_beta.generated.models.PolicyLocation::|public|value(value:str):None msgraph_beta.generated.models.PolicyLocation::|static|public|create_from_discriminator_value(parse_node:ParseNode):PolicyLocation +msgraph_beta.generated.models.PolicyLocationAgent-->PolicyLocationApplication +msgraph_beta.generated.models.PolicyLocationAgent::|public|agent_metadata():AgentMetadata +msgraph_beta.generated.models.PolicyLocationAgent::|public|agent_metadata(value:AgentMetadata):None +msgraph_beta.generated.models.PolicyLocationAgent::|public|constructor():None +msgraph_beta.generated.models.PolicyLocationAgent::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.PolicyLocationAgent::|public|odata_type:str +msgraph_beta.generated.models.PolicyLocationAgent::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.PolicyLocationAgent::|static|public|create_from_discriminator_value(parse_node:ParseNode):PolicyLocationAgent msgraph_beta.generated.models.PolicyLocationApplication-->PolicyLocation msgraph_beta.generated.models.PolicyLocationApplication::|public|constructor():None msgraph_beta.generated.models.PolicyLocationApplication::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -241268,12 +240839,6 @@ msgraph_beta.generated.models.PolicyLocationDomain::|public|get_field_deserializ msgraph_beta.generated.models.PolicyLocationDomain::|public|odata_type:str msgraph_beta.generated.models.PolicyLocationDomain::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.PolicyLocationDomain::|static|public|create_from_discriminator_value(parse_node:ParseNode):PolicyLocationDomain -msgraph_beta.generated.models.PolicyLocationTool-->PolicyLocation -msgraph_beta.generated.models.PolicyLocationTool::|public|constructor():None -msgraph_beta.generated.models.PolicyLocationTool::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.PolicyLocationTool::|public|odata_type:str -msgraph_beta.generated.models.PolicyLocationTool::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.PolicyLocationTool::|static|public|create_from_discriminator_value(parse_node:ParseNode):PolicyLocationTool msgraph_beta.generated.models.PolicyLocationUrl-->PolicyLocation msgraph_beta.generated.models.PolicyLocationUrl::|public|constructor():None msgraph_beta.generated.models.PolicyLocationUrl::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -244997,8 +244562,6 @@ msgraph_beta.generated.models.ProtectedApplicationMetadata::|public|constructor( msgraph_beta.generated.models.ProtectedApplicationMetadata::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] msgraph_beta.generated.models.ProtectedApplicationMetadata::|public|odata_type:str msgraph_beta.generated.models.ProtectedApplicationMetadata::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.ProtectedApplicationMetadata::|public|source_location():PolicyLocation -msgraph_beta.generated.models.ProtectedApplicationMetadata::|public|source_location(value:PolicyLocation):None msgraph_beta.generated.models.ProtectedApplicationMetadata::|static|public|create_from_discriminator_value(parse_node:ParseNode):ProtectedApplicationMetadata msgraph_beta.generated.models.ProtectedContent::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.ProtectedContent::|public|additional_data(value:dict[str, Any]):None @@ -247188,10 +246751,10 @@ msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|constructor() msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|is_first_refresh():bool msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|is_first_refresh(value:bool):None +msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|most_recent_refresh_date_time():datetime.datetime +msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|most_recent_refresh_date_time(value:datetime.datetime):None msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|most_recent_refresh_request_status():str msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|most_recent_refresh_request_status(value:str):None -msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|most_recent_refresh_time():str -msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|most_recent_refresh_time(value:str):None msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|odata_type():str msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|odata_type(value:str):None msgraph_beta.generated.models.RelatedTenantsRefreshStatus::|public|serialize(writer:SerializationWriter):None @@ -247529,12 +247092,6 @@ msgraph_beta.generated.models.RemovedState::|public|reason(value:str):None msgraph_beta.generated.models.RemovedState::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.RemovedState::|static|public|create_from_discriminator_value(parse_node:ParseNode):RemovedState msgraph_beta.generated.models.RemovedState~~>AdditionalDataHolder; BackedModel; Parsable -msgraph_beta.generated.models.RemoveFromLobbyOperation-->CommsOperation -msgraph_beta.generated.models.RemoveFromLobbyOperation::|public|constructor():None -msgraph_beta.generated.models.RemoveFromLobbyOperation::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.models.RemoveFromLobbyOperation::|public|odata_type:str -msgraph_beta.generated.models.RemoveFromLobbyOperation::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.models.RemoveFromLobbyOperation::|static|public|create_from_discriminator_value(parse_node:ParseNode):RemoveFromLobbyOperation msgraph_beta.generated.models.RemoveProtectionAction-->InformationProtectionAction msgraph_beta.generated.models.RemoveProtectionAction::|public|constructor():None msgraph_beta.generated.models.RemoveProtectionAction::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -247979,6 +247536,26 @@ msgraph_beta.generated.models.ResourceOperationCollectionResponse::|public|seria msgraph_beta.generated.models.ResourceOperationCollectionResponse::|public|value():list[ResourceOperation] msgraph_beta.generated.models.ResourceOperationCollectionResponse::|public|value(value:list[ResourceOperation]):None msgraph_beta.generated.models.ResourceOperationCollectionResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):ResourceOperationCollectionResponse +msgraph_beta.generated.models.ResourceQuota::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.ResourceQuota::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.ResourceQuota::|public|backing_store:BackingStore +msgraph_beta.generated.models.ResourceQuota::|public|constructor():None +msgraph_beta.generated.models.ResourceQuota::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.ResourceQuota::|public|max_percentage():int +msgraph_beta.generated.models.ResourceQuota::|public|max_percentage(value:int):None +msgraph_beta.generated.models.ResourceQuota::|public|odata_type():str +msgraph_beta.generated.models.ResourceQuota::|public|odata_type(value:str):None +msgraph_beta.generated.models.ResourceQuota::|public|resource_type():ResourceQuotaType +msgraph_beta.generated.models.ResourceQuota::|public|resource_type(value:ResourceQuotaType):None +msgraph_beta.generated.models.ResourceQuota::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.ResourceQuota::|public|total():int +msgraph_beta.generated.models.ResourceQuota::|public|total(value:int):None +msgraph_beta.generated.models.ResourceQuota::|static|public|create_from_discriminator_value(parse_node:ParseNode):ResourceQuota +msgraph_beta.generated.models.ResourceQuotaType::0000-AgentIdentityBlueprint +msgraph_beta.generated.models.ResourceQuotaType::0001-AgentIdentity +msgraph_beta.generated.models.ResourceQuotaType::0002-ManagedIdentity +msgraph_beta.generated.models.ResourceQuotaType::0003-UnknownFutureValue +msgraph_beta.generated.models.ResourceQuota~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.ResourceReference::|public|additional_data():dict[str, Any] msgraph_beta.generated.models.ResourceReference::|public|additional_data(value:dict[str, Any]):None msgraph_beta.generated.models.ResourceReference::|public|backing_store:BackingStore @@ -248377,6 +247954,8 @@ msgraph_beta.generated.models.RestoreSessionBase::|public|last_modified_by(value msgraph_beta.generated.models.RestoreSessionBase::|public|last_modified_date_time():datetime.datetime msgraph_beta.generated.models.RestoreSessionBase::|public|last_modified_date_time(value:datetime.datetime):None msgraph_beta.generated.models.RestoreSessionBase::|public|odata_type:str +msgraph_beta.generated.models.RestoreSessionBase::|public|policy_id():str +msgraph_beta.generated.models.RestoreSessionBase::|public|policy_id(value:str):None msgraph_beta.generated.models.RestoreSessionBase::|public|restore_job_type():RestoreJobType msgraph_beta.generated.models.RestoreSessionBase::|public|restore_job_type(value:RestoreJobType):None msgraph_beta.generated.models.RestoreSessionBase::|public|restore_session_artifact_count():RestoreSessionArtifactCount @@ -250798,6 +250377,8 @@ msgraph_beta.generated.models.SearchHit::|public|score():int msgraph_beta.generated.models.SearchHit::|public|score(value:int):None msgraph_beta.generated.models.SearchHit::|public|search_hit_summary():str msgraph_beta.generated.models.SearchHit::|public|search_hit_summary(value:str):None +msgraph_beta.generated.models.SearchHit::|public|sensitivity_label():SensitivityLabelInfo +msgraph_beta.generated.models.SearchHit::|public|sensitivity_label(value:SensitivityLabelInfo):None msgraph_beta.generated.models.SearchHit::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.SearchHit::|public|source():Entity msgraph_beta.generated.models.SearchHit::|public|source(value:Entity):None @@ -253268,6 +252849,8 @@ msgraph_beta.generated.models.security.caseManagement.Case::|public|odata_type:s msgraph_beta.generated.models.security.caseManagement.Case::|public|relations():list[Relation] msgraph_beta.generated.models.security.caseManagement.Case::|public|relations(value:list[Relation]):None msgraph_beta.generated.models.security.caseManagement.Case::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.security.caseManagement.Case::|public|sla_policies():list[CaseSlaPolicyEntry] +msgraph_beta.generated.models.security.caseManagement.Case::|public|sla_policies(value:list[CaseSlaPolicyEntry]):None msgraph_beta.generated.models.security.caseManagement.Case::|public|status():str msgraph_beta.generated.models.security.caseManagement.Case::|public|status(value:str):None msgraph_beta.generated.models.security.caseManagement.Case::|public|tasks():list[Task] @@ -253294,6 +252877,31 @@ msgraph_beta.generated.models.security.caseManagement.CaseManagementEntity::|pub msgraph_beta.generated.models.security.caseManagement.CaseManagementEntity::|public|odata_type:str msgraph_beta.generated.models.security.caseManagement.CaseManagementEntity::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.security.caseManagement.CaseManagementEntity::|static|public|create_from_discriminator_value(parse_node:ParseNode):CaseManagementEntity +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|backing_store:BackingStore +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|breach_target_date_time():datetime.datetime +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|breach_target_date_time(value:datetime.datetime):None +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|constructor():None +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|odata_type():str +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|odata_type(value:str):None +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|policy_display_name():str +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|policy_display_name(value:str):None +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|policy_id():str +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|policy_id(value:str):None +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|status():CaseSlaPolicyStatus +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|public|status(value:CaseSlaPolicyStatus):None +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry::|static|public|create_from_discriminator_value(parse_node:ParseNode):CaseSlaPolicyEntry +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyEntry~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyStatus::0000-Active +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyStatus::0001-AtRisk +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyStatus::0002-Breached +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyStatus::0003-Paused +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyStatus::0004-CompletedMet +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyStatus::0005-CompletedBreached +msgraph_beta.generated.models.security.caseManagement.CaseSlaPolicyStatus::0006-UnknownFutureValue msgraph_beta.generated.models.security.caseManagement.CaseTaskCategory::0000-Uncategorized msgraph_beta.generated.models.security.caseManagement.CaseTaskCategory::0001-Triage msgraph_beta.generated.models.security.caseManagement.CaseTaskCategory::0002-Contain @@ -263382,6 +262990,26 @@ msgraph_beta.generated.models.SensitivityLabelCollectionResponse::|public|serial msgraph_beta.generated.models.SensitivityLabelCollectionResponse::|public|value():list[SensitivityLabel] msgraph_beta.generated.models.SensitivityLabelCollectionResponse::|public|value(value:list[SensitivityLabel]):None msgraph_beta.generated.models.SensitivityLabelCollectionResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):SensitivityLabelCollectionResponse +msgraph_beta.generated.models.SensitivityLabelInfo::|public|additional_data():dict[str, Any] +msgraph_beta.generated.models.SensitivityLabelInfo::|public|additional_data(value:dict[str, Any]):None +msgraph_beta.generated.models.SensitivityLabelInfo::|public|backing_store:BackingStore +msgraph_beta.generated.models.SensitivityLabelInfo::|public|color():str +msgraph_beta.generated.models.SensitivityLabelInfo::|public|color(value:str):None +msgraph_beta.generated.models.SensitivityLabelInfo::|public|constructor():None +msgraph_beta.generated.models.SensitivityLabelInfo::|public|display_name():str +msgraph_beta.generated.models.SensitivityLabelInfo::|public|display_name(value:str):None +msgraph_beta.generated.models.SensitivityLabelInfo::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.SensitivityLabelInfo::|public|odata_type():str +msgraph_beta.generated.models.SensitivityLabelInfo::|public|odata_type(value:str):None +msgraph_beta.generated.models.SensitivityLabelInfo::|public|priority():int +msgraph_beta.generated.models.SensitivityLabelInfo::|public|priority(value:int):None +msgraph_beta.generated.models.SensitivityLabelInfo::|public|sensitivity_label_id():str +msgraph_beta.generated.models.SensitivityLabelInfo::|public|sensitivity_label_id(value:str):None +msgraph_beta.generated.models.SensitivityLabelInfo::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.SensitivityLabelInfo::|public|tooltip():str +msgraph_beta.generated.models.SensitivityLabelInfo::|public|tooltip(value:str):None +msgraph_beta.generated.models.SensitivityLabelInfo::|static|public|create_from_discriminator_value(parse_node:ParseNode):SensitivityLabelInfo +msgraph_beta.generated.models.SensitivityLabelInfo~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.SensitivityLabelTarget::0000-Email msgraph_beta.generated.models.SensitivityLabelTarget::0001-Site msgraph_beta.generated.models.SensitivityLabelTarget::0002-UnifiedGroup @@ -263845,8 +263473,6 @@ msgraph_beta.generated.models.ServicePrincipal::|public|key_credentials():list[K msgraph_beta.generated.models.ServicePrincipal::|public|key_credentials(value:list[KeyCredential]):None msgraph_beta.generated.models.ServicePrincipal::|public|license_details():list[LicenseDetails] msgraph_beta.generated.models.ServicePrincipal::|public|license_details(value:list[LicenseDetails]):None -msgraph_beta.generated.models.ServicePrincipal::|public|lifecycle():IdentityLifecycle -msgraph_beta.generated.models.ServicePrincipal::|public|lifecycle(value:IdentityLifecycle):None msgraph_beta.generated.models.ServicePrincipal::|public|login_url():str msgraph_beta.generated.models.ServicePrincipal::|public|login_url(value:str):None msgraph_beta.generated.models.ServicePrincipal::|public|logout_url():str @@ -265668,6 +265294,8 @@ msgraph_beta.generated.models.SignIn::|public|risk_level_during_sign_in():RiskLe msgraph_beta.generated.models.SignIn::|public|risk_level_during_sign_in(value:RiskLevel):None msgraph_beta.generated.models.SignIn::|public|risk_state():RiskState msgraph_beta.generated.models.SignIn::|public|risk_state(value:RiskState):None +msgraph_beta.generated.models.SignIn::|public|root_actor_id():str +msgraph_beta.generated.models.SignIn::|public|root_actor_id(value:str):None msgraph_beta.generated.models.SignIn::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.SignIn::|public|service_principal_credential_key_id():str msgraph_beta.generated.models.SignIn::|public|service_principal_credential_key_id(value:str):None @@ -267764,6 +267392,8 @@ msgraph_beta.generated.models.SummarizedSignIn::|public|resource_display_name(): msgraph_beta.generated.models.SummarizedSignIn::|public|resource_display_name(value:str):None msgraph_beta.generated.models.SummarizedSignIn::|public|resource_id():str msgraph_beta.generated.models.SummarizedSignIn::|public|resource_id(value:str):None +msgraph_beta.generated.models.SummarizedSignIn::|public|root_actor_id():str +msgraph_beta.generated.models.SummarizedSignIn::|public|root_actor_id(value:str):None msgraph_beta.generated.models.SummarizedSignIn::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.SummarizedSignIn::|public|service_principal_id():str msgraph_beta.generated.models.SummarizedSignIn::|public|service_principal_id(value:str):None @@ -270754,6 +270384,12 @@ msgraph_beta.generated.models.TemporaryAccessPassAuthenticationMethodConfigurati msgraph_beta.generated.models.TemporaryAccessPassAuthenticationMethodConfiguration::|public|odata_type:str msgraph_beta.generated.models.TemporaryAccessPassAuthenticationMethodConfiguration::|public|serialize(writer:SerializationWriter):None msgraph_beta.generated.models.TemporaryAccessPassAuthenticationMethodConfiguration::|static|public|create_from_discriminator_value(parse_node:ParseNode):TemporaryAccessPassAuthenticationMethodConfiguration +msgraph_beta.generated.models.TenantActivitiesContainer-->Entity +msgraph_beta.generated.models.TenantActivitiesContainer::|public|constructor():None +msgraph_beta.generated.models.TenantActivitiesContainer::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.TenantActivitiesContainer::|public|odata_type:str +msgraph_beta.generated.models.TenantActivitiesContainer::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.TenantActivitiesContainer::|static|public|create_from_discriminator_value(parse_node:ParseNode):TenantActivitiesContainer msgraph_beta.generated.models.TenantAppManagementPolicy-->PolicyBase msgraph_beta.generated.models.TenantAppManagementPolicy::|public|application_restrictions():AppManagementApplicationConfiguration msgraph_beta.generated.models.TenantAppManagementPolicy::|public|application_restrictions(value:AppManagementApplicationConfiguration):None @@ -270785,6 +270421,8 @@ msgraph_beta.generated.models.TenantAttachRBACState::|public|serialize(writer:Se msgraph_beta.generated.models.TenantAttachRBACState::|static|public|create_from_discriminator_value(parse_node:ParseNode):TenantAttachRBACState msgraph_beta.generated.models.TenantAttachRBACState~~>AdditionalDataHolder; BackedModel; Parsable msgraph_beta.generated.models.TenantDataSecurityAndGovernance-->DataSecurityAndGovernance +msgraph_beta.generated.models.TenantDataSecurityAndGovernance::|public|activities():TenantActivitiesContainer +msgraph_beta.generated.models.TenantDataSecurityAndGovernance::|public|activities(value:TenantActivitiesContainer):None msgraph_beta.generated.models.TenantDataSecurityAndGovernance::|public|constructor():None msgraph_beta.generated.models.TenantDataSecurityAndGovernance::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] msgraph_beta.generated.models.TenantDataSecurityAndGovernance::|public|odata_type:str @@ -272154,6 +271792,14 @@ msgraph_beta.generated.models.ToneInfo::|public|tone():Tone msgraph_beta.generated.models.ToneInfo::|public|tone(value:Tone):None msgraph_beta.generated.models.ToneInfo::|static|public|create_from_discriminator_value(parse_node:ParseNode):ToneInfo msgraph_beta.generated.models.ToneInfo~~>AdditionalDataHolder; BackedModel; Parsable +msgraph_beta.generated.models.ToolParticipant-->InteractionParticipant +msgraph_beta.generated.models.ToolParticipant::|public|constructor():None +msgraph_beta.generated.models.ToolParticipant::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.ToolParticipant::|public|mcp_server_id():str +msgraph_beta.generated.models.ToolParticipant::|public|mcp_server_id(value:str):None +msgraph_beta.generated.models.ToolParticipant::|public|odata_type:str +msgraph_beta.generated.models.ToolParticipant::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.ToolParticipant::|static|public|create_from_discriminator_value(parse_node:ParseNode):ToolParticipant msgraph_beta.generated.models.TooManyGlobalAdminsAssignedToTenantAlertConfiguration-->UnifiedRoleManagementAlertConfiguration msgraph_beta.generated.models.TooManyGlobalAdminsAssignedToTenantAlertConfiguration::|public|constructor():None msgraph_beta.generated.models.TooManyGlobalAdminsAssignedToTenantAlertConfiguration::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -276273,6 +275919,12 @@ msgraph_beta.generated.models.UserOwnership::0006-RightToRectification msgraph_beta.generated.models.UserOwnership::0007-RightToRestrictionOfProcessing msgraph_beta.generated.models.UserOwnership::0008-RightsRelatedToAutomatedDecisionMaking msgraph_beta.generated.models.UserOwnership::0009-UnknownFutureValue +msgraph_beta.generated.models.UserParticipant-->InteractionParticipant +msgraph_beta.generated.models.UserParticipant::|public|constructor():None +msgraph_beta.generated.models.UserParticipant::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.models.UserParticipant::|public|odata_type:str +msgraph_beta.generated.models.UserParticipant::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.models.UserParticipant::|static|public|create_from_discriminator_value(parse_node:ParseNode):UserParticipant msgraph_beta.generated.models.UserPasswordResetsAndChangesSummary-->Entity msgraph_beta.generated.models.UserPasswordResetsAndChangesSummary::|public|aggregated_date_time():datetime.datetime msgraph_beta.generated.models.UserPasswordResetsAndChangesSummary::|public|aggregated_date_time(value:datetime.datetime):None @@ -289137,58 +288789,62 @@ msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessCrossTen msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTime.MicrosoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTimeRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTimeRequestBuilderGetQueryParameters]):RequestInformation msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTime.MicrosoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTimeRequestBuilder::|public|url_template:str msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTime.MicrosoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTimeRequestBuilder::|public|with_url(raw_url:str):MicrosoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTimeRequestBuilder -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse-->BaseCollectionPaginationCountResponse -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse::|public|constructor():None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse::|public|value():list[Destination] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse::|public|value(value:list[Destination]):None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters::|public|ai_agent_id:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters::|public|ai_agent_name:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetRequestConfiguration-->RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter; end_date_time?:datetime.datetime; start_date_time?:datetime.datetime):None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder::|public|get(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters]):DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder::|public|url_template:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentName.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder::|public|with_url(raw_url:str):MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686-->BaseCollectionPaginationCountResponse -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686::|public|constructor():None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686::|public|value():list[Device] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686::|public|value(value:list[Device]):None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686::|static|public|create_from_discriminator_value(parse_node:ParseNode):DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686 -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd-->BaseRequestBuilder -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|ai_agent_id:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|ai_agent_name:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|application_id:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|cloud_application_name:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|destination_url:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|discovered_application_segment_id:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetRequestConfiguration-->RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter; end_date_time?:datetime.datetime; start_date_time?:datetime.datetime):None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd::|public|get(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]):DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686 -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd::|public|request_adapter:RequestAdapter -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd::|public|to_get_request_information(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd::|public|url_template:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_88652905.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd::|public|with_url(raw_url:str):MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse-->BaseCollectionPaginationCountResponse +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse::|public|constructor():None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse::|public|value():list[Destination] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse::|public|value(value:list[Destination]):None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder-->BaseRequestBuilder +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters::|public|agent_type_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters::|public|agent_virtual_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters::|public|ai_agent_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters::|public|ai_agent_name:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters::|public|count:bool +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters::|public|filter:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters::|public|search:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters::|public|skip:int +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters::|public|top:int +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetRequestConfiguration-->RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter; end_date_time?:datetime.datetime; start_date_time?:datetime.datetime):None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder::|public|get(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters]):DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder::|public|request_adapter:RequestAdapter +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters]):RequestInformation +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder::|public|url_template:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualId.MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder::|public|with_url(raw_url:str):MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3-->BaseCollectionPaginationCountResponse +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3::|public|constructor():None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3::|public|value():list[Device] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3::|public|value(value:list[Device]):None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3::|static|public|create_from_discriminator_value(parse_node:ParseNode):DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3 +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c-->BaseRequestBuilder +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|agent_type_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|agent_virtual_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|ai_agent_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|ai_agent_name:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|application_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|cloud_application_name:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|count:bool +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|destination_url:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|discovered_application_segment_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|filter:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|search:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|skip:int +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|top:int +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetRequestConfiguration-->RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter; end_date_time?:datetime.datetime; start_date_time?:datetime.datetime):None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c::|public|get(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]):DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3 +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c::|public|path_parameters:Union[str, dict[str, Any]] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c::|public|request_adapter:RequestAdapter +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c::|public|to_get_request_information(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]):RequestInformation +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c::|public|url_template:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_f04bed07.MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c::|public|with_url(raw_url:str):MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessEntitiesSummariesWithStartDateTimeWithEndDateTime.EntitiesSummariesWithStartDateTimeWithEndDateTimeGetResponse-->BaseCollectionPaginationCountResponse msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessEntitiesSummariesWithStartDateTimeWithEndDateTime.EntitiesSummariesWithStartDateTimeWithEndDateTimeGetResponse::|public|constructor():None msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessEntitiesSummariesWithStartDateTimeWithEndDateTime.EntitiesSummariesWithStartDateTimeWithEndDateTimeGetResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -289415,34 +289071,36 @@ msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUsagePro msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUsageProfilingWithStartDateTimeWithEndDateTimeWithAggregatedBydiscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgent_44b51529.UsageProfilingWithStartDateTimeWithEndDateTimeWithAggregatedBydiscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAge_e691cabf::|public|value():list[UsageProfilingPoint] msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUsageProfilingWithStartDateTimeWithEndDateTimeWithAggregatedBydiscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgent_44b51529.UsageProfilingWithStartDateTimeWithEndDateTimeWithAggregatedBydiscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAge_e691cabf::|public|value(value:list[UsageProfilingPoint]):None msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUsageProfilingWithStartDateTimeWithEndDateTimeWithAggregatedBydiscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgent_44b51529.UsageProfilingWithStartDateTimeWithEndDateTimeWithAggregatedBydiscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAge_e691cabf::|static|public|create_from_discriminator_value(parse_node:ParseNode):UsageProfilingWithStartDateTimeWithEndDateTimeWithAggregatedBydiscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAge_e691cabf -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761-->BaseRequestBuilder -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|ai_agent_id:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|ai_agent_name:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|application_id:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|cloud_application_name:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|destination_url:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|discovered_application_segment_id:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetRequestConfiguration-->RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter; end_date_time?:datetime.datetime; start_date_time?:datetime.datetime):None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761::|public|get(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]):UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100 -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761::|public|request_adapter:RequestAdapter -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761::|public|to_get_request_information(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761::|public|url_template:str -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761::|public|with_url(raw_url:str):MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761 -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100-->BaseCollectionPaginationCountResponse -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100::|public|constructor():None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100::|public|serialize(writer:SerializationWriter):None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100::|public|value():list[User] -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100::|public|value(value:list[User]):None -msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_b974b70d.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100::|static|public|create_from_discriminator_value(parse_node:ParseNode):UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100 +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3-->BaseRequestBuilder +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|agent_type_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|agent_virtual_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|ai_agent_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|ai_agent_name:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|application_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|cloud_application_name:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|count:bool +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|destination_url:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|discovered_application_segment_id:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|filter:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|search:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|skip:int +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters::|public|top:int +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetRequestConfiguration-->RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter; end_date_time?:datetime.datetime; start_date_time?:datetime.datetime):None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3::|public|get(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]):UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981 +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3::|public|path_parameters:Union[str, dict[str, Any]] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3::|public|request_adapter:RequestAdapter +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3::|public|to_get_request_information(request_configuration?:RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]):RequestInformation +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3::|public|url_template:str +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3::|public|with_url(raw_url:str):MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3 +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981-->BaseCollectionPaginationCountResponse +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981::|public|constructor():None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981::|public|value():list[User] +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981::|public|value(value:list[User]):None +msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_951cee79.UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981::|static|public|create_from_discriminator_value(parse_node:ParseNode):UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981 msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTime.MicrosoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTimeRequestBuilder-->BaseRequestBuilder msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTime.MicrosoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTimeRequestBuilder.MicrosoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTimeRequestBuilderGetQueryParameters::|public|count:bool msgraph_beta.generated.networkAccess.reports.microsoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTime.MicrosoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTimeRequestBuilder.MicrosoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTimeRequestBuilderGetQueryParameters::|public|filter:str @@ -289476,8 +289134,8 @@ msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|cons msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|delete(request_configuration?:RequestConfiguration[QueryParameters]):None msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|get(request_configuration?:RequestConfiguration[ReportsRequestBuilderGetQueryParameters]):Reports msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_cross_tenant_access_report_with_start_date_time_with_end_date_time(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTimeRequestBuilder -msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder -msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_cloud_application_name_destination_url_destination_url(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd +msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder +msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_cloud_application_name_cloud_application_name_destination_url_destination_url(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_entities_summaries_with_start_date_time_with_end_date_time(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessEntitiesSummariesWithStartDateTimeWithEndDateTimeRequestBuilder msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_get_application_usage_analytics_with_start_date_time_with_end_date_time_with_aggregated_by(aggregated_by:str; end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessGetApplicationUsageAnalyticsWithStartDateTimeWithEndDateTimeWithAggregatedByRequestBuilder msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_get_cloud_application_report_with_start_date_time_with_end_date_timeuser_id_user_id(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessGetCloudApplicationReportWithStartDateTimeWithEndDateTimeuserIdUserIdRequestBuilder @@ -289489,7 +289147,7 @@ msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|micr msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_get_enterprise_application_report_with_start_date_time_with_end_date_timeuser_id_user_id(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessGetEnterpriseApplicationReportWithStartDateTimeWithEndDateTimeuserIdUserIdRequestBuilder msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_transaction_summaries_with_start_date_time_with_end_date_time(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessTransactionSummariesWithStartDateTimeWithEndDateTimeRequestBuilder msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_usage_profiling_with_start_date_time_with_end_date_time_with_aggregated_bydiscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_destination_url_destination_url(aggregated_by:str; end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessUsageProfilingWithStartDateTimeWithEndDateTimeWithAggregatedBydiscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgent_4a7f983e -msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_cloud_application_name_destination_url_destination_url(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761 +msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_cloud_application_name_cloud_application_name_destination_url_destination_url(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3 msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|microsoft_graph_networkaccess_web_category_report_with_start_date_time_with_end_date_time(end_date_time:datetime.datetime; start_date_time:datetime.datetime):MicrosoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTimeRequestBuilder msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|patch(body:Reports; request_configuration?:RequestConfiguration[QueryParameters]):Reports msgraph_beta.generated.networkAccess.reports.ReportsRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] @@ -321066,6 +320724,24 @@ msgraph_beta.generated.security.dataDiscovery.DataDiscoveryRequestBuilder::|publ msgraph_beta.generated.security.dataDiscovery.DataDiscoveryRequestBuilder::|public|to_patch_request_information(body:DataDiscoveryRoot; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.security.dataDiscovery.DataDiscoveryRequestBuilder::|public|url_template:str msgraph_beta.generated.security.dataDiscovery.DataDiscoveryRequestBuilder::|public|with_url(raw_url:str):DataDiscoveryRequestBuilder +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder-->BaseRequestBuilder +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder.ActivitiesRequestBuilderDeleteRequestConfiguration-->RequestConfiguration[QueryParameters] +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder.ActivitiesRequestBuilderGetQueryParameters::|public|expand:list[str] +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder.ActivitiesRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder.ActivitiesRequestBuilderGetQueryParameters::|public|select:list[str] +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder.ActivitiesRequestBuilderGetRequestConfiguration-->RequestConfiguration[ActivitiesRequestBuilderGetQueryParameters] +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder.ActivitiesRequestBuilderPatchRequestConfiguration-->RequestConfiguration[QueryParameters] +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|delete(request_configuration?:RequestConfiguration[QueryParameters]):None +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|get(request_configuration?:RequestConfiguration[ActivitiesRequestBuilderGetQueryParameters]):TenantActivitiesContainer +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|patch(body:TenantActivitiesContainer; request_configuration?:RequestConfiguration[QueryParameters]):TenantActivitiesContainer +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|request_adapter:RequestAdapter +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|to_delete_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[ActivitiesRequestBuilderGetQueryParameters]):RequestInformation +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|to_patch_request_information(body:TenantActivitiesContainer; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|url_template:str +msgraph_beta.generated.security.dataSecurityAndGovernance.activities.ActivitiesRequestBuilder::|public|with_url(raw_url:str):ActivitiesRequestBuilder msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGovernanceRequestBuilder-->BaseRequestBuilder msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGovernanceRequestBuilder.DataSecurityAndGovernanceRequestBuilderDeleteRequestConfiguration-->RequestConfiguration[QueryParameters] msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGovernanceRequestBuilder.DataSecurityAndGovernanceRequestBuilderGetQueryParameters::|public|expand:list[str] @@ -321073,6 +320749,7 @@ msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGoverna msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGovernanceRequestBuilder.DataSecurityAndGovernanceRequestBuilderGetQueryParameters::|public|select:list[str] msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGovernanceRequestBuilder.DataSecurityAndGovernanceRequestBuilderGetRequestConfiguration-->RequestConfiguration[DataSecurityAndGovernanceRequestBuilderGetQueryParameters] msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGovernanceRequestBuilder.DataSecurityAndGovernanceRequestBuilderPatchRequestConfiguration-->RequestConfiguration[QueryParameters] +msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGovernanceRequestBuilder::|public|activities:ActivitiesRequestBuilder msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGovernanceRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGovernanceRequestBuilder::|public|delete(request_configuration?:RequestConfiguration[QueryParameters]):None msgraph_beta.generated.security.dataSecurityAndGovernance.DataSecurityAndGovernanceRequestBuilder::|public|get(request_configuration?:RequestConfiguration[DataSecurityAndGovernanceRequestBuilderGetQueryParameters]):TenantDataSecurityAndGovernance @@ -328057,82 +327734,6 @@ msgraph_beta.generated.servicePrincipals.item.licenseDetails.LicenseDetailsReque msgraph_beta.generated.servicePrincipals.item.licenseDetails.LicenseDetailsRequestBuilder::|public|to_post_request_information(body:LicenseDetails; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.servicePrincipals.item.licenseDetails.LicenseDetailsRequestBuilder::|public|url_template:str msgraph_beta.generated.servicePrincipals.item.licenseDetails.LicenseDetailsRequestBuilder::|public|with_url(raw_url:str):LicenseDetailsRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder.ComplianceIssuesRequestBuilderGetQueryParameters::|public|count:bool -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder.ComplianceIssuesRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder.ComplianceIssuesRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder.ComplianceIssuesRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder.ComplianceIssuesRequestBuilderGetQueryParameters::|public|orderby:list[str] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder.ComplianceIssuesRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder.ComplianceIssuesRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder.ComplianceIssuesRequestBuilderGetQueryParameters::|public|skip:int -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder.ComplianceIssuesRequestBuilderGetQueryParameters::|public|top:int -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder.ComplianceIssuesRequestBuilderGetRequestConfiguration-->RequestConfiguration[ComplianceIssuesRequestBuilderGetQueryParameters] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder::|public|by_compliance_issue_id(compliance_issue_id:str):ComplianceIssueItemRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder::|public|count:CountRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder::|public|get(request_configuration?:RequestConfiguration[ComplianceIssuesRequestBuilderGetQueryParameters]):ComplianceIssueCollectionResponse -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[ComplianceIssuesRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder::|public|url_template:str -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.ComplianceIssuesRequestBuilder::|public|with_url(raw_url:str):ComplianceIssuesRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|search:str -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder.CountRequestBuilderGetRequestConfiguration-->RequestConfiguration[CountRequestBuilderGetQueryParameters] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder::|public|get(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):int -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder::|public|url_template:str -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.count.CountRequestBuilder::|public|with_url(raw_url:str):CountRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder.ComplianceIssueItemRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder.ComplianceIssueItemRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder.ComplianceIssueItemRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder.ComplianceIssueItemRequestBuilderGetRequestConfiguration-->RequestConfiguration[ComplianceIssueItemRequestBuilderGetQueryParameters] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder::|public|get(request_configuration?:RequestConfiguration[ComplianceIssueItemRequestBuilderGetQueryParameters]):ComplianceIssue -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[ComplianceIssueItemRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder::|public|url_template:str -msgraph_beta.generated.servicePrincipals.item.lifecycle.complianceIssues.item.ComplianceIssueItemRequestBuilder::|public|with_url(raw_url:str):ComplianceIssueItemRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder.EffectiveGoverningPolicyRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder.EffectiveGoverningPolicyRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder.EffectiveGoverningPolicyRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder.EffectiveGoverningPolicyRequestBuilderGetRequestConfiguration-->RequestConfiguration[EffectiveGoverningPolicyRequestBuilderGetQueryParameters] -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder::|public|get(request_configuration?:RequestConfiguration[EffectiveGoverningPolicyRequestBuilderGetQueryParameters]):LifecyclePolicy -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[EffectiveGoverningPolicyRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder::|public|url_template:str -msgraph_beta.generated.servicePrincipals.item.lifecycle.effectiveGoverningPolicy.EffectiveGoverningPolicyRequestBuilder::|public|with_url(raw_url:str):EffectiveGoverningPolicyRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder.LifecycleRequestBuilderDeleteRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder.LifecycleRequestBuilderGetQueryParameters::|public|expand:list[str] -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder.LifecycleRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder.LifecycleRequestBuilderGetQueryParameters::|public|select:list[str] -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder.LifecycleRequestBuilderGetRequestConfiguration-->RequestConfiguration[LifecycleRequestBuilderGetQueryParameters] -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder.LifecycleRequestBuilderPatchRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|compliance_issues:ComplianceIssuesRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|delete(request_configuration?:RequestConfiguration[QueryParameters]):None -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|effective_governing_policy:EffectiveGoverningPolicyRequestBuilder -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|get(request_configuration?:RequestConfiguration[LifecycleRequestBuilderGetQueryParameters]):IdentityLifecycle -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|patch(body:IdentityLifecycle; request_configuration?:RequestConfiguration[QueryParameters]):IdentityLifecycle -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|to_delete_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[LifecycleRequestBuilderGetQueryParameters]):RequestInformation -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|to_patch_request_information(body:IdentityLifecycle; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|url_template:str -msgraph_beta.generated.servicePrincipals.item.lifecycle.LifecycleRequestBuilder::|public|with_url(raw_url:str):LifecycleRequestBuilder msgraph_beta.generated.servicePrincipals.item.memberOf.count.CountRequestBuilder-->BaseRequestBuilder msgraph_beta.generated.servicePrincipals.item.memberOf.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str msgraph_beta.generated.servicePrincipals.item.memberOf.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str @@ -328312,15 +327913,6 @@ msgraph_beta.generated.servicePrincipals.item.memberOf.MemberOfRequestBuilder::| msgraph_beta.generated.servicePrincipals.item.memberOf.MemberOfRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[MemberOfRequestBuilderGetQueryParameters]):RequestInformation msgraph_beta.generated.servicePrincipals.item.memberOf.MemberOfRequestBuilder::|public|url_template:str msgraph_beta.generated.servicePrincipals.item.memberOf.MemberOfRequestBuilder::|public|with_url(raw_url:str):MemberOfRequestBuilder -msgraph_beta.generated.servicePrincipals.item.microsoftGraphIdentityGovernanceAttest.MicrosoftGraphIdentityGovernanceAttestRequestBuilder-->BaseRequestBuilder -msgraph_beta.generated.servicePrincipals.item.microsoftGraphIdentityGovernanceAttest.MicrosoftGraphIdentityGovernanceAttestRequestBuilder.MicrosoftGraphIdentityGovernanceAttestRequestBuilderPostRequestConfiguration-->RequestConfiguration[QueryParameters] -msgraph_beta.generated.servicePrincipals.item.microsoftGraphIdentityGovernanceAttest.MicrosoftGraphIdentityGovernanceAttestRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None -msgraph_beta.generated.servicePrincipals.item.microsoftGraphIdentityGovernanceAttest.MicrosoftGraphIdentityGovernanceAttestRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] -msgraph_beta.generated.servicePrincipals.item.microsoftGraphIdentityGovernanceAttest.MicrosoftGraphIdentityGovernanceAttestRequestBuilder::|public|post(request_configuration?:RequestConfiguration[QueryParameters]):None -msgraph_beta.generated.servicePrincipals.item.microsoftGraphIdentityGovernanceAttest.MicrosoftGraphIdentityGovernanceAttestRequestBuilder::|public|request_adapter:RequestAdapter -msgraph_beta.generated.servicePrincipals.item.microsoftGraphIdentityGovernanceAttest.MicrosoftGraphIdentityGovernanceAttestRequestBuilder::|public|to_post_request_information(request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation -msgraph_beta.generated.servicePrincipals.item.microsoftGraphIdentityGovernanceAttest.MicrosoftGraphIdentityGovernanceAttestRequestBuilder::|public|url_template:str -msgraph_beta.generated.servicePrincipals.item.microsoftGraphIdentityGovernanceAttest.MicrosoftGraphIdentityGovernanceAttestRequestBuilder::|public|with_url(raw_url:str):MicrosoftGraphIdentityGovernanceAttestRequestBuilder msgraph_beta.generated.servicePrincipals.item.oauth2PermissionGrants.count.CountRequestBuilder-->BaseRequestBuilder msgraph_beta.generated.servicePrincipals.item.oauth2PermissionGrants.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|filter:str msgraph_beta.generated.servicePrincipals.item.oauth2PermissionGrants.count.CountRequestBuilder.CountRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str @@ -329095,9 +328687,7 @@ msgraph_beta.generated.servicePrincipals.item.ServicePrincipalItemRequestBuilder msgraph_beta.generated.servicePrincipals.item.ServicePrincipalItemRequestBuilder::|public|get_password_single_sign_on_credentials:GetPasswordSingleSignOnCredentialsRequestBuilder msgraph_beta.generated.servicePrincipals.item.ServicePrincipalItemRequestBuilder::|public|home_realm_discovery_policies:HomeRealmDiscoveryPoliciesRequestBuilder msgraph_beta.generated.servicePrincipals.item.ServicePrincipalItemRequestBuilder::|public|license_details:LicenseDetailsRequestBuilder -msgraph_beta.generated.servicePrincipals.item.ServicePrincipalItemRequestBuilder::|public|lifecycle:LifecycleRequestBuilder msgraph_beta.generated.servicePrincipals.item.ServicePrincipalItemRequestBuilder::|public|member_of:MemberOfRequestBuilder -msgraph_beta.generated.servicePrincipals.item.ServicePrincipalItemRequestBuilder::|public|microsoft_graph_identity_governance_attest:MicrosoftGraphIdentityGovernanceAttestRequestBuilder msgraph_beta.generated.servicePrincipals.item.ServicePrincipalItemRequestBuilder::|public|oauth2_permission_grants:Oauth2PermissionGrantsRequestBuilder msgraph_beta.generated.servicePrincipals.item.ServicePrincipalItemRequestBuilder::|public|owned_objects:OwnedObjectsRequestBuilder msgraph_beta.generated.servicePrincipals.item.ServicePrincipalItemRequestBuilder::|public|owners:OwnersRequestBuilder @@ -345400,6 +344990,8 @@ msgraph_beta.generated.solutions.backupRestore.restorePoints.search.SearchPostRe msgraph_beta.generated.solutions.backupRestore.restorePoints.search.SearchPostRequestBody::|public|backing_store:BackingStore msgraph_beta.generated.solutions.backupRestore.restorePoints.search.SearchPostRequestBody::|public|constructor():None msgraph_beta.generated.solutions.backupRestore.restorePoints.search.SearchPostRequestBody::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.solutions.backupRestore.restorePoints.search.SearchPostRequestBody::|public|policy_id():str +msgraph_beta.generated.solutions.backupRestore.restorePoints.search.SearchPostRequestBody::|public|policy_id(value:str):None msgraph_beta.generated.solutions.backupRestore.restorePoints.search.SearchPostRequestBody::|public|protection_time_period():TimePeriod msgraph_beta.generated.solutions.backupRestore.restorePoints.search.SearchPostRequestBody::|public|protection_time_period(value:TimePeriod):None msgraph_beta.generated.solutions.backupRestore.restorePoints.search.SearchPostRequestBody::|public|protection_unit_ids():list[str] @@ -349892,6 +349484,8 @@ msgraph_beta.generated.storage.fileStorage.containers.ContainersRequestBuilder:: msgraph_beta.generated.storage.fileStorage.containers.ContainersRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None msgraph_beta.generated.storage.fileStorage.containers.ContainersRequestBuilder::|public|count:CountRequestBuilder msgraph_beta.generated.storage.fileStorage.containers.ContainersRequestBuilder::|public|get(request_configuration?:RequestConfiguration[ContainersRequestBuilderGetQueryParameters]):FileStorageContainerCollectionResponse +msgraph_beta.generated.storage.fileStorage.containers.ContainersRequestBuilder::|public|get_by_user_with_user_object_id(user_object_id:UUID):GetByUserWithUserObjectIdRequestBuilder +msgraph_beta.generated.storage.fileStorage.containers.ContainersRequestBuilder::|public|get_by_user_with_user_object_id_with_role(role:str; user_object_id:UUID):GetByUserWithUserObjectIdWithRoleRequestBuilder msgraph_beta.generated.storage.fileStorage.containers.ContainersRequestBuilder::|public|get_by_user_with_user_principal_name(user_principal_name:str):GetByUserWithUserPrincipalNameRequestBuilder msgraph_beta.generated.storage.fileStorage.containers.ContainersRequestBuilder::|public|get_by_user_with_user_principal_name_with_role(role:str; user_principal_name:str):GetByUserWithUserPrincipalNameWithRoleRequestBuilder msgraph_beta.generated.storage.fileStorage.containers.ContainersRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] @@ -349913,6 +349507,56 @@ msgraph_beta.generated.storage.fileStorage.containers.count.CountRequestBuilder: msgraph_beta.generated.storage.fileStorage.containers.count.CountRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[CountRequestBuilderGetQueryParameters]):RequestInformation msgraph_beta.generated.storage.fileStorage.containers.count.CountRequestBuilder::|public|url_template:str msgraph_beta.generated.storage.fileStorage.containers.count.CountRequestBuilder::|public|with_url(raw_url:str):CountRequestBuilder +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse-->BaseCollectionPaginationCountResponse +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|public|constructor():None +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|public|value():list[FileStorageContainer] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|public|value(value:list[FileStorageContainer]):None +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):GetByUserWithUserObjectIdGetResponse +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder-->BaseRequestBuilder +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|count:bool +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|expand:list[str] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|filter:str +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|orderby:list[str] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|search:str +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|select:list[str] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|skip:int +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|top:int +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetRequestConfiguration-->RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter; user_object_id?:UUID):None +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|get(request_configuration?:RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters]):GetByUserWithUserObjectIdGetResponse +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|request_adapter:RequestAdapter +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters]):RequestInformation +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|url_template:str +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|with_url(raw_url:str):GetByUserWithUserObjectIdRequestBuilder +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse-->BaseCollectionPaginationCountResponse +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|public|constructor():None +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|public|value():list[FileStorageContainer] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|public|value(value:list[FileStorageContainer]):None +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):GetByUserWithUserObjectIdWithRoleGetResponse +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder-->BaseRequestBuilder +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|count:bool +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|expand:list[str] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|filter:str +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|orderby:list[str] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|search:str +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|select:list[str] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|skip:int +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|top:int +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetRequestConfiguration-->RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter; role?:str; user_object_id?:UUID):None +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|get(request_configuration?:RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters]):GetByUserWithUserObjectIdWithRoleGetResponse +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|request_adapter:RequestAdapter +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters]):RequestInformation +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|url_template:str +msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|with_url(raw_url:str):GetByUserWithUserObjectIdWithRoleRequestBuilder msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserPrincipalName.GetByUserWithUserPrincipalNameGetResponse-->BaseCollectionPaginationCountResponse msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserPrincipalName.GetByUserWithUserPrincipalNameGetResponse::|public|constructor():None msgraph_beta.generated.storage.fileStorage.containers.getByUserWithUserPrincipalName.GetByUserWithUserPrincipalNameGetResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] @@ -351145,6 +350789,8 @@ msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRe msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter):None msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|count:CountRequestBuilder msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|get(request_configuration?:RequestConfiguration[DeletedContainersRequestBuilderGetQueryParameters]):FileStorageContainerCollectionResponse +msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|get_by_user_with_user_object_id(user_object_id:UUID):GetByUserWithUserObjectIdRequestBuilder +msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|get_by_user_with_user_object_id_with_role(role:str; user_object_id:UUID):GetByUserWithUserObjectIdWithRoleRequestBuilder msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|get_by_user_with_user_principal_name(user_principal_name:str):GetByUserWithUserPrincipalNameRequestBuilder msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|get_by_user_with_user_principal_name_with_role(role:str; user_principal_name:str):GetByUserWithUserPrincipalNameWithRoleRequestBuilder msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] @@ -351154,6 +350800,56 @@ msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRe msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|to_post_request_information(body:FileStorageContainer; request_configuration?:RequestConfiguration[QueryParameters]):RequestInformation msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|url_template:str msgraph_beta.generated.storage.fileStorage.deletedContainers.DeletedContainersRequestBuilder::|public|with_url(raw_url:str):DeletedContainersRequestBuilder +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse-->BaseCollectionPaginationCountResponse +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|public|constructor():None +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|public|value():list[FileStorageContainer] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|public|value(value:list[FileStorageContainer]):None +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdGetResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):GetByUserWithUserObjectIdGetResponse +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder-->BaseRequestBuilder +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|count:bool +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|expand:list[str] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|filter:str +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|orderby:list[str] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|search:str +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|select:list[str] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|skip:int +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetQueryParameters::|public|top:int +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder.GetByUserWithUserObjectIdRequestBuilderGetRequestConfiguration-->RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter; user_object_id?:UUID):None +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|get(request_configuration?:RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters]):GetByUserWithUserObjectIdGetResponse +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|request_adapter:RequestAdapter +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters]):RequestInformation +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|url_template:str +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectId.GetByUserWithUserObjectIdRequestBuilder::|public|with_url(raw_url:str):GetByUserWithUserObjectIdRequestBuilder +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse-->BaseCollectionPaginationCountResponse +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|public|constructor():None +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|public|serialize(writer:SerializationWriter):None +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|public|value():list[FileStorageContainer] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|public|value(value:list[FileStorageContainer]):None +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleGetResponse::|static|public|create_from_discriminator_value(parse_node:ParseNode):GetByUserWithUserObjectIdWithRoleGetResponse +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder-->BaseRequestBuilder +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|count:bool +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|expand:list[str] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|filter:str +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|get_query_parameter(original_name:str):str +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|orderby:list[str] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|search:str +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|select:list[str] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|skip:int +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters::|public|top:int +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder.GetByUserWithUserObjectIdWithRoleRequestBuilderGetRequestConfiguration-->RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|constructor(path_parameters:Union[str, dict[str, Any]]; request_adapter:RequestAdapter; role?:str; user_object_id?:UUID):None +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|get(request_configuration?:RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters]):GetByUserWithUserObjectIdWithRoleGetResponse +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|path_parameters:Union[str, dict[str, Any]] +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|request_adapter:RequestAdapter +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|to_get_request_information(request_configuration?:RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters]):RequestInformation +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|url_template:str +msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserObjectIdWithRole.GetByUserWithUserObjectIdWithRoleRequestBuilder::|public|with_url(raw_url:str):GetByUserWithUserObjectIdWithRoleRequestBuilder msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserPrincipalName.GetByUserWithUserPrincipalNameGetResponse-->BaseCollectionPaginationCountResponse msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserPrincipalName.GetByUserWithUserPrincipalNameGetResponse::|public|constructor():None msgraph_beta.generated.storage.fileStorage.deletedContainers.getByUserWithUserPrincipalName.GetByUserWithUserPrincipalNameGetResponse::|public|get_field_deserializers():dict[str, Callable[[ParseNode], None]] diff --git a/msgraph_beta/generated/kiota-lock.json b/msgraph_beta/generated/kiota-lock.json index f103402e51e..5305b5360c8 100644 --- a/msgraph_beta/generated/kiota-lock.json +++ b/msgraph_beta/generated/kiota-lock.json @@ -1,8 +1,8 @@ { - "descriptionHash": "8A0FD4D573BF8AA4241DC7FF7E805BA5AE81B3F877F8092F6AD895D962F4AD0B5B3CBA20F63527848E6B8D5D57502A636C49C8014F787D57EFEE2FB4E9D14C91", + "descriptionHash": "4DDCDF177DAB7E1D89C2450679DF3584E8C1C134A4F01042318306E3CBDA80C35D646153C6F7B9C7B0EA2F8590AEDAB25110D2287565A12ADA95FFB0B645F0B7", "descriptionLocation": "../../msgraph-metadata/clean_beta_openapi/openapi.yaml", "lockFileVersion": "1.0.0", - "kiotaVersion": "1.34.1", + "kiotaVersion": "1.35.0", "clientClassName": "BaseGraphServiceClient", "typeAccessModifier": "Public", "clientNamespaceName": "msgraph_beta.generated", diff --git a/msgraph_beta/generated/models/access_drift_detail.py b/msgraph_beta/generated/models/access_drift_detail.py new file mode 100644 index 00000000000..d8baf923d9c --- /dev/null +++ b/msgraph_beta/generated/models/access_drift_detail.py @@ -0,0 +1,97 @@ +from __future__ import annotations +import datetime +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .access_drift_source import AccessDriftSource + from .access_drift_type import AccessDriftType + from .drift_identity_info import DriftIdentityInfo + from .drift_resource_info import DriftResourceInfo + from .entity import Entity + from .entra_access_drift_detail import EntraAccessDriftDetail + +from .entity import Entity + +@dataclass +class AccessDriftDetail(Entity, Parsable): + # The createdDateTime property + created_date_time: Optional[datetime.datetime] = None + # The driftSource property + drift_source: Optional[AccessDriftSource] = None + # The driftType property + drift_type: Optional[AccessDriftType] = None + # The identities property + identities: Optional[list[DriftIdentityInfo]] = None + # The OdataType property + odata_type: Optional[str] = None + # The resource property + resource: Optional[DriftResourceInfo] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> AccessDriftDetail: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: AccessDriftDetail + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + try: + child_node = parse_node.get_child_node("@odata.type") + mapping_value = child_node.get_str_value() if child_node else None + except AttributeError: + mapping_value = None + if mapping_value and mapping_value.casefold() == "#microsoft.graph.entraAccessDriftDetail".casefold(): + from .entra_access_drift_detail import EntraAccessDriftDetail + + return EntraAccessDriftDetail() + return AccessDriftDetail() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .access_drift_source import AccessDriftSource + from .access_drift_type import AccessDriftType + from .drift_identity_info import DriftIdentityInfo + from .drift_resource_info import DriftResourceInfo + from .entity import Entity + from .entra_access_drift_detail import EntraAccessDriftDetail + + from .access_drift_source import AccessDriftSource + from .access_drift_type import AccessDriftType + from .drift_identity_info import DriftIdentityInfo + from .drift_resource_info import DriftResourceInfo + from .entity import Entity + from .entra_access_drift_detail import EntraAccessDriftDetail + + fields: dict[str, Callable[[Any], None]] = { + "createdDateTime": lambda n : setattr(self, 'created_date_time', n.get_datetime_value()), + "driftSource": lambda n : setattr(self, 'drift_source', n.get_enum_value(AccessDriftSource)), + "driftType": lambda n : setattr(self, 'drift_type', n.get_enum_value(AccessDriftType)), + "identities": lambda n : setattr(self, 'identities', n.get_collection_of_object_values(DriftIdentityInfo)), + "resource": lambda n : setattr(self, 'resource', n.get_object_value(DriftResourceInfo)), + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + writer.write_enum_value("driftSource", self.drift_source) + writer.write_enum_value("driftType", self.drift_type) + writer.write_collection_of_object_values("identities", self.identities) + writer.write_object_value("resource", self.resource) + + diff --git a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_priority_configuration.py b/msgraph_beta/generated/models/access_drift_report.py similarity index 56% rename from msgraph_beta/generated/models/identity_governance/lifecycle_policy_priority_configuration.py rename to msgraph_beta/generated/models/access_drift_report.py index 8b38b3bb686..26a0cefb7b7 100644 --- a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_priority_configuration.py +++ b/msgraph_beta/generated/models/access_drift_report.py @@ -1,49 +1,53 @@ from __future__ import annotations +import datetime from collections.abc import Callable from dataclasses import dataclass, field from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from ..entity import Entity - from .subject_type import SubjectType + from .access_drift_report_resource_type import AccessDriftReportResourceType + from .entity import Entity -from ..entity import Entity +from .entity import Entity @dataclass -class LifecyclePolicyPriorityConfiguration(Entity, Parsable): +class AccessDriftReport(Entity, Parsable): + # The downloadUri property + download_uri: Optional[str] = None + # The expiresAt property + expires_at: Optional[datetime.datetime] = None # The OdataType property odata_type: Optional[str] = None - # The orderedPolicyIds property - ordered_policy_ids: Optional[list[str]] = None - # The subjectType property - subject_type: Optional[SubjectType] = None + # The resourceType property + resource_type: Optional[AccessDriftReportResourceType] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> LifecyclePolicyPriorityConfiguration: + def create_from_discriminator_value(parse_node: ParseNode) -> AccessDriftReport: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: LifecyclePolicyPriorityConfiguration + Returns: AccessDriftReport """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return LifecyclePolicyPriorityConfiguration() + return AccessDriftReport() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from ..entity import Entity - from .subject_type import SubjectType + from .access_drift_report_resource_type import AccessDriftReportResourceType + from .entity import Entity - from ..entity import Entity - from .subject_type import SubjectType + from .access_drift_report_resource_type import AccessDriftReportResourceType + from .entity import Entity fields: dict[str, Callable[[Any], None]] = { - "orderedPolicyIds": lambda n : setattr(self, 'ordered_policy_ids', n.get_collection_of_primitive_values(str)), - "subjectType": lambda n : setattr(self, 'subject_type', n.get_collection_of_enum_values(SubjectType)), + "downloadUri": lambda n : setattr(self, 'download_uri', n.get_str_value()), + "expiresAt": lambda n : setattr(self, 'expires_at', n.get_datetime_value()), + "resourceType": lambda n : setattr(self, 'resource_type', n.get_enum_value(AccessDriftReportResourceType)), } super_fields = super().get_field_deserializers() fields.update(super_fields) @@ -58,7 +62,6 @@ def serialize(self,writer: SerializationWriter) -> None: if writer is None: raise TypeError("writer cannot be null.") super().serialize(writer) - writer.write_collection_of_primitive_values("orderedPolicyIds", self.ordered_policy_ids) - writer.write_enum_value("subjectType", self.subject_type) + writer.write_enum_value("resourceType", self.resource_type) diff --git a/msgraph_beta/generated/models/access_drift_report_resource_type.py b/msgraph_beta/generated/models/access_drift_report_resource_type.py new file mode 100644 index 00000000000..aa477606b90 --- /dev/null +++ b/msgraph_beta/generated/models/access_drift_report_resource_type.py @@ -0,0 +1,7 @@ +from enum import Enum + +class AccessDriftReportResourceType(str, Enum): + Application = "application", + Group = "group", + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/access_drift_resource_type.py b/msgraph_beta/generated/models/access_drift_resource_type.py new file mode 100644 index 00000000000..a841b2049b4 --- /dev/null +++ b/msgraph_beta/generated/models/access_drift_resource_type.py @@ -0,0 +1,7 @@ +from enum import Enum + +class AccessDriftResourceType(str, Enum): + Application = "application", + Group = "group", + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/access_drift_source.py b/msgraph_beta/generated/models/access_drift_source.py new file mode 100644 index 00000000000..153badd0fb0 --- /dev/null +++ b/msgraph_beta/generated/models/access_drift_source.py @@ -0,0 +1,7 @@ +from enum import Enum + +class AccessDriftSource(str, Enum): + Entra = "entra", + ExternalApplication = "externalApplication", + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/access_drift_summary.py b/msgraph_beta/generated/models/access_drift_summary.py new file mode 100644 index 00000000000..1705e2002e4 --- /dev/null +++ b/msgraph_beta/generated/models/access_drift_summary.py @@ -0,0 +1,85 @@ +from __future__ import annotations +import datetime +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .access_drift_detail import AccessDriftDetail + from .access_drift_source import AccessDriftSource + from .drift_counts import DriftCounts + from .drift_resource_info import DriftResourceInfo + from .entity import Entity + +from .entity import Entity + +@dataclass +class AccessDriftSummary(Entity, Parsable): + # The createdDateTime property + created_date_time: Optional[datetime.datetime] = None + # The details property + details: Optional[list[AccessDriftDetail]] = None + # The driftCounts property + drift_counts: Optional[DriftCounts] = None + # The driftSource property + drift_source: Optional[AccessDriftSource] = None + # The OdataType property + odata_type: Optional[str] = None + # The resource property + resource: Optional[DriftResourceInfo] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> AccessDriftSummary: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: AccessDriftSummary + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return AccessDriftSummary() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .access_drift_detail import AccessDriftDetail + from .access_drift_source import AccessDriftSource + from .drift_counts import DriftCounts + from .drift_resource_info import DriftResourceInfo + from .entity import Entity + + from .access_drift_detail import AccessDriftDetail + from .access_drift_source import AccessDriftSource + from .drift_counts import DriftCounts + from .drift_resource_info import DriftResourceInfo + from .entity import Entity + + fields: dict[str, Callable[[Any], None]] = { + "createdDateTime": lambda n : setattr(self, 'created_date_time', n.get_datetime_value()), + "details": lambda n : setattr(self, 'details', n.get_collection_of_object_values(AccessDriftDetail)), + "driftCounts": lambda n : setattr(self, 'drift_counts', n.get_object_value(DriftCounts)), + "driftSource": lambda n : setattr(self, 'drift_source', n.get_enum_value(AccessDriftSource)), + "resource": lambda n : setattr(self, 'resource', n.get_object_value(DriftResourceInfo)), + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + writer.write_collection_of_object_values("details", self.details) + writer.write_object_value("driftCounts", self.drift_counts) + writer.write_enum_value("driftSource", self.drift_source) + writer.write_object_value("resource", self.resource) + + diff --git a/msgraph_beta/generated/models/access_drift_type.py b/msgraph_beta/generated/models/access_drift_type.py new file mode 100644 index 00000000000..cd0700ea66b --- /dev/null +++ b/msgraph_beta/generated/models/access_drift_type.py @@ -0,0 +1,8 @@ +from enum import Enum + +class AccessDriftType(str, Enum): + Unauthorized = "unauthorized", + Missing = "missing", + InSync = "inSync", + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/activity_metadata.py b/msgraph_beta/generated/models/activity_metadata.py index d7ccc61c7b4..283463b0898 100644 --- a/msgraph_beta/generated/models/activity_metadata.py +++ b/msgraph_beta/generated/models/activity_metadata.py @@ -6,6 +6,7 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: + from .interaction_participant import InteractionParticipant from .user_activity_type import UserActivityType @dataclass @@ -19,6 +20,8 @@ class ActivityMetadata(AdditionalDataHolder, BackedModel, Parsable): activity: Optional[UserActivityType] = None # The OdataType property odata_type: Optional[str] = None + # The participants property + participants: Optional[list[InteractionParticipant]] = None @staticmethod def create_from_discriminator_value(parse_node: ParseNode) -> ActivityMetadata: @@ -36,13 +39,16 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ + from .interaction_participant import InteractionParticipant from .user_activity_type import UserActivityType + from .interaction_participant import InteractionParticipant from .user_activity_type import UserActivityType fields: dict[str, Callable[[Any], None]] = { "activity": lambda n : setattr(self, 'activity', n.get_enum_value(UserActivityType)), "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), + "participants": lambda n : setattr(self, 'participants', n.get_collection_of_object_values(InteractionParticipant)), } return fields @@ -56,6 +62,7 @@ def serialize(self,writer: SerializationWriter) -> None: raise TypeError("writer cannot be null.") writer.write_enum_value("activity", self.activity) writer.write_str_value("@odata.type", self.odata_type) + writer.write_collection_of_object_values("participants", self.participants) writer.write_additional_data_value(self.additional_data) diff --git a/msgraph_beta/generated/models/agent_metadata.py b/msgraph_beta/generated/models/agent_metadata.py new file mode 100644 index 00000000000..a799cd8bd4f --- /dev/null +++ b/msgraph_beta/generated/models/agent_metadata.py @@ -0,0 +1,78 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter +from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton +from typing import Any, Optional, TYPE_CHECKING, Union + +@dataclass +class AgentMetadata(AdditionalDataHolder, BackedModel, Parsable): + # Stores model information. + backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) + + # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + additional_data: dict[str, Any] = field(default_factory=dict) + # The agentAdministrativeUnitId property + agent_administrative_unit_id: Optional[str] = None + # The agentBlueprintId property + agent_blueprint_id: Optional[str] = None + # The agentCategory property + agent_category: Optional[str] = None + # The agentOwner property + agent_owner: Optional[str] = None + # The agentPublisher property + agent_publisher: Optional[str] = None + # The altAgentIds property + alt_agent_ids: Optional[list[str]] = None + # The isEntraAgentId property + is_entra_agent_id: Optional[bool] = None + # The OdataType property + odata_type: Optional[str] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> AgentMetadata: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: AgentMetadata + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return AgentMetadata() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + fields: dict[str, Callable[[Any], None]] = { + "agentAdministrativeUnitId": lambda n : setattr(self, 'agent_administrative_unit_id', n.get_str_value()), + "agentBlueprintId": lambda n : setattr(self, 'agent_blueprint_id', n.get_str_value()), + "agentCategory": lambda n : setattr(self, 'agent_category', n.get_str_value()), + "agentOwner": lambda n : setattr(self, 'agent_owner', n.get_str_value()), + "agentPublisher": lambda n : setattr(self, 'agent_publisher', n.get_str_value()), + "altAgentIds": lambda n : setattr(self, 'alt_agent_ids', n.get_collection_of_primitive_values(str)), + "isEntraAgentId": lambda n : setattr(self, 'is_entra_agent_id', n.get_bool_value()), + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), + } + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + writer.write_str_value("agentAdministrativeUnitId", self.agent_administrative_unit_id) + writer.write_str_value("agentBlueprintId", self.agent_blueprint_id) + writer.write_str_value("agentCategory", self.agent_category) + writer.write_str_value("agentOwner", self.agent_owner) + writer.write_str_value("agentPublisher", self.agent_publisher) + writer.write_collection_of_primitive_values("altAgentIds", self.alt_agent_ids) + writer.write_bool_value("isEntraAgentId", self.is_entra_agent_id) + writer.write_str_value("@odata.type", self.odata_type) + writer.write_additional_data_value(self.additional_data) + + diff --git a/msgraph_beta/generated/models/agent_participant.py b/msgraph_beta/generated/models/agent_participant.py new file mode 100644 index 00000000000..3d1b17f8b80 --- /dev/null +++ b/msgraph_beta/generated/models/agent_participant.py @@ -0,0 +1,53 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .interaction_participant import InteractionParticipant + +from .interaction_participant import InteractionParticipant + +@dataclass +class AgentParticipant(InteractionParticipant, Parsable): + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.agentParticipant" + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> AgentParticipant: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: AgentParticipant + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return AgentParticipant() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .interaction_participant import InteractionParticipant + + from .interaction_participant import InteractionParticipant + + fields: dict[str, Callable[[Any], None]] = { + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + + diff --git a/msgraph_beta/generated/models/android_aosp_referenced_app.py b/msgraph_beta/generated/models/android_aosp_referenced_app.py new file mode 100644 index 00000000000..2a6cb16aaf1 --- /dev/null +++ b/msgraph_beta/generated/models/android_aosp_referenced_app.py @@ -0,0 +1,60 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .mobile_app import MobileApp + +from .mobile_app import MobileApp + +@dataclass +class AndroidAospReferencedApp(MobileApp, Parsable): + """ + An app that references an Android application on an AOSP device by its package name. + """ + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.androidAospReferencedApp" + # The package name of the app as it exists on the AOSP device. This property is immutable after creation. + package_id: Optional[str] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> AndroidAospReferencedApp: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: AndroidAospReferencedApp + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return AndroidAospReferencedApp() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .mobile_app import MobileApp + + from .mobile_app import MobileApp + + fields: dict[str, Callable[[Any], None]] = { + "packageId": lambda n : setattr(self, 'package_id', n.get_str_value()), + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + writer.write_str_value("packageId", self.package_id) + + diff --git a/msgraph_beta/generated/models/identity_governance/agent_identity_lifecycle_policy.py b/msgraph_beta/generated/models/anonymous_calendar_sharing_free_busy_detail.py similarity index 72% rename from msgraph_beta/generated/models/identity_governance/agent_identity_lifecycle_policy.py rename to msgraph_beta/generated/models/anonymous_calendar_sharing_free_busy_detail.py index b6d7a3c5630..b9ec4ff5479 100644 --- a/msgraph_beta/generated/models/identity_governance/agent_identity_lifecycle_policy.py +++ b/msgraph_beta/generated/models/anonymous_calendar_sharing_free_busy_detail.py @@ -5,34 +5,34 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from .lifecycle_policy import LifecyclePolicy + from .m365_capability_base import M365CapabilityBase -from .lifecycle_policy import LifecyclePolicy +from .m365_capability_base import M365CapabilityBase @dataclass -class AgentIdentityLifecyclePolicy(LifecyclePolicy, Parsable): +class AnonymousCalendarSharingFreeBusyDetail(M365CapabilityBase, Parsable): # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.agentIdentityLifecyclePolicy" + odata_type: Optional[str] = "#microsoft.graph.anonymousCalendarSharingFreeBusyDetail" @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AgentIdentityLifecyclePolicy: + def create_from_discriminator_value(parse_node: ParseNode) -> AnonymousCalendarSharingFreeBusyDetail: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AgentIdentityLifecyclePolicy + Returns: AnonymousCalendarSharingFreeBusyDetail """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AgentIdentityLifecyclePolicy() + return AnonymousCalendarSharingFreeBusyDetail() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from .lifecycle_policy import LifecyclePolicy + from .m365_capability_base import M365CapabilityBase - from .lifecycle_policy import LifecyclePolicy + from .m365_capability_base import M365CapabilityBase fields: dict[str, Callable[[Any], None]] = { } diff --git a/msgraph_beta/generated/models/anonymous_calendar_sharing_free_busy_reviewer.py b/msgraph_beta/generated/models/anonymous_calendar_sharing_free_busy_reviewer.py new file mode 100644 index 00000000000..12eeb605dcd --- /dev/null +++ b/msgraph_beta/generated/models/anonymous_calendar_sharing_free_busy_reviewer.py @@ -0,0 +1,53 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .m365_capability_base import M365CapabilityBase + +from .m365_capability_base import M365CapabilityBase + +@dataclass +class AnonymousCalendarSharingFreeBusyReviewer(M365CapabilityBase, Parsable): + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.anonymousCalendarSharingFreeBusyReviewer" + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> AnonymousCalendarSharingFreeBusyReviewer: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: AnonymousCalendarSharingFreeBusyReviewer + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return AnonymousCalendarSharingFreeBusyReviewer() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .m365_capability_base import M365CapabilityBase + + from .m365_capability_base import M365CapabilityBase + + fields: dict[str, Callable[[Any], None]] = { + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + + diff --git a/msgraph_beta/generated/models/anonymous_calendar_sharing_free_busy_simple.py b/msgraph_beta/generated/models/anonymous_calendar_sharing_free_busy_simple.py new file mode 100644 index 00000000000..79b810a64f6 --- /dev/null +++ b/msgraph_beta/generated/models/anonymous_calendar_sharing_free_busy_simple.py @@ -0,0 +1,53 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .m365_capability_base import M365CapabilityBase + +from .m365_capability_base import M365CapabilityBase + +@dataclass +class AnonymousCalendarSharingFreeBusySimple(M365CapabilityBase, Parsable): + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.anonymousCalendarSharingFreeBusySimple" + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> AnonymousCalendarSharingFreeBusySimple: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: AnonymousCalendarSharingFreeBusySimple + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return AnonymousCalendarSharingFreeBusySimple() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .m365_capability_base import M365CapabilityBase + + from .m365_capability_base import M365CapabilityBase + + fields: dict[str, Callable[[Any], None]] = { + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + + diff --git a/msgraph_beta/generated/models/identity_governance/agent_identity_lifecycle.py b/msgraph_beta/generated/models/application_drift_resource_info.py similarity index 74% rename from msgraph_beta/generated/models/identity_governance/agent_identity_lifecycle.py rename to msgraph_beta/generated/models/application_drift_resource_info.py index 9c6df0de7b1..5b8e41bcf95 100644 --- a/msgraph_beta/generated/models/identity_governance/agent_identity_lifecycle.py +++ b/msgraph_beta/generated/models/application_drift_resource_info.py @@ -5,34 +5,34 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from .identity_lifecycle import IdentityLifecycle + from .drift_resource_info import DriftResourceInfo -from .identity_lifecycle import IdentityLifecycle +from .drift_resource_info import DriftResourceInfo @dataclass -class AgentIdentityLifecycle(IdentityLifecycle, Parsable): +class ApplicationDriftResourceInfo(DriftResourceInfo, Parsable): # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.agentIdentityLifecycle" + odata_type: Optional[str] = "#microsoft.graph.applicationDriftResourceInfo" @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AgentIdentityLifecycle: + def create_from_discriminator_value(parse_node: ParseNode) -> ApplicationDriftResourceInfo: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AgentIdentityLifecycle + Returns: ApplicationDriftResourceInfo """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AgentIdentityLifecycle() + return ApplicationDriftResourceInfo() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from .identity_lifecycle import IdentityLifecycle + from .drift_resource_info import DriftResourceInfo - from .identity_lifecycle import IdentityLifecycle + from .drift_resource_info import DriftResourceInfo fields: dict[str, Callable[[Any], None]] = { } diff --git a/msgraph_beta/generated/models/authentication_methods_policy.py b/msgraph_beta/generated/models/authentication_methods_policy.py index 21061154b09..bf35e150276 100644 --- a/msgraph_beta/generated/models/authentication_methods_policy.py +++ b/msgraph_beta/generated/models/authentication_methods_policy.py @@ -8,28 +8,30 @@ if TYPE_CHECKING: from .authentication_methods_policy_migration_state import AuthenticationMethodsPolicyMigrationState from .authentication_method_configuration import AuthenticationMethodConfiguration - from .entity import Entity from .microsoft_authenticator_platform_settings import MicrosoftAuthenticatorPlatformSettings + from .policy_deletable_item import PolicyDeletableItem from .registration_enforcement import RegistrationEnforcement from .report_suspicious_activity_settings import ReportSuspiciousActivitySettings from .system_credential_preferences import SystemCredentialPreferences -from .entity import Entity +from .policy_deletable_item import PolicyDeletableItem @dataclass -class AuthenticationMethodsPolicy(Entity, Parsable): +class AuthenticationMethodsPolicy(PolicyDeletableItem, Parsable): + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.authenticationMethodsPolicy" # Represents the settings for each authentication method. Automatically expanded on GET /policies/authenticationMethodsPolicy. authentication_method_configurations: Optional[list[AuthenticationMethodConfiguration]] = None # A description of the policy. description: Optional[str] = None # The name of the policy. display_name: Optional[str] = None + # The id property + id: Optional[str] = None # The date and time of the last update to the policy. last_modified_date_time: Optional[datetime.datetime] = None # The microsoftAuthenticatorPlatformSettings property microsoft_authenticator_platform_settings: Optional[MicrosoftAuthenticatorPlatformSettings] = None - # The OdataType property - odata_type: Optional[str] = None # The state of migration of the authentication methods policy from the legacy multifactor authentication and self-service password reset (SSPR) policies. The possible values are: premigration - means the authentication methods policy is used for authentication only, legacy policies are respected. migrationInProgress - means the authentication methods policy is used for both authentication and SSPR, legacy policies are respected. migrationComplete - means the authentication methods policy is used for authentication and SSPR, legacy policies are ignored. unknownFutureValue - Evolvable enumeration sentinel value. Don't use. policy_migration_state: Optional[AuthenticationMethodsPolicyMigrationState] = None # The version of the policy in use. @@ -61,16 +63,16 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ from .authentication_methods_policy_migration_state import AuthenticationMethodsPolicyMigrationState from .authentication_method_configuration import AuthenticationMethodConfiguration - from .entity import Entity from .microsoft_authenticator_platform_settings import MicrosoftAuthenticatorPlatformSettings + from .policy_deletable_item import PolicyDeletableItem from .registration_enforcement import RegistrationEnforcement from .report_suspicious_activity_settings import ReportSuspiciousActivitySettings from .system_credential_preferences import SystemCredentialPreferences from .authentication_methods_policy_migration_state import AuthenticationMethodsPolicyMigrationState from .authentication_method_configuration import AuthenticationMethodConfiguration - from .entity import Entity from .microsoft_authenticator_platform_settings import MicrosoftAuthenticatorPlatformSettings + from .policy_deletable_item import PolicyDeletableItem from .registration_enforcement import RegistrationEnforcement from .report_suspicious_activity_settings import ReportSuspiciousActivitySettings from .system_credential_preferences import SystemCredentialPreferences @@ -79,6 +81,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "authenticationMethodConfigurations": lambda n : setattr(self, 'authentication_method_configurations', n.get_collection_of_object_values(AuthenticationMethodConfiguration)), "description": lambda n : setattr(self, 'description', n.get_str_value()), "displayName": lambda n : setattr(self, 'display_name', n.get_str_value()), + "id": lambda n : setattr(self, 'id', n.get_str_value()), "lastModifiedDateTime": lambda n : setattr(self, 'last_modified_date_time', n.get_datetime_value()), "microsoftAuthenticatorPlatformSettings": lambda n : setattr(self, 'microsoft_authenticator_platform_settings', n.get_object_value(MicrosoftAuthenticatorPlatformSettings)), "policyMigrationState": lambda n : setattr(self, 'policy_migration_state', n.get_enum_value(AuthenticationMethodsPolicyMigrationState)), @@ -104,6 +107,7 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_collection_of_object_values("authenticationMethodConfigurations", self.authentication_method_configurations) writer.write_str_value("description", self.description) writer.write_str_value("displayName", self.display_name) + writer.write_str_value("id", self.id) writer.write_datetime_value("lastModifiedDateTime", self.last_modified_date_time) writer.write_object_value("microsoftAuthenticatorPlatformSettings", self.microsoft_authenticator_platform_settings) writer.write_enum_value("policyMigrationState", self.policy_migration_state) diff --git a/msgraph_beta/generated/models/authentication_strength_policy.py b/msgraph_beta/generated/models/authentication_strength_policy.py index f2047381953..1c975186209 100644 --- a/msgraph_beta/generated/models/authentication_strength_policy.py +++ b/msgraph_beta/generated/models/authentication_strength_policy.py @@ -10,12 +10,14 @@ from .authentication_method_modes import AuthenticationMethodModes from .authentication_strength_policy_type import AuthenticationStrengthPolicyType from .authentication_strength_requirements import AuthenticationStrengthRequirements - from .entity import Entity + from .policy_deletable_item import PolicyDeletableItem -from .entity import Entity +from .policy_deletable_item import PolicyDeletableItem @dataclass -class AuthenticationStrengthPolicy(Entity, Parsable): +class AuthenticationStrengthPolicy(PolicyDeletableItem, Parsable): + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.authenticationStrengthPolicy" # A collection of authentication method modes that are required be used to satify this authentication strength. allowed_combinations: Optional[list[AuthenticationMethodModes]] = None # Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. @@ -26,10 +28,10 @@ class AuthenticationStrengthPolicy(Entity, Parsable): description: Optional[str] = None # The human-readable display name of this policy. Supports $filter (eq, ne, not , and in). display_name: Optional[str] = None + # The id property + id: Optional[str] = None # The datetime when this policy was last modified. modified_date_time: Optional[datetime.datetime] = None - # The OdataType property - odata_type: Optional[str] = None # The policyType property policy_type: Optional[AuthenticationStrengthPolicyType] = None # The requirementsSatisfied property @@ -55,13 +57,13 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .authentication_method_modes import AuthenticationMethodModes from .authentication_strength_policy_type import AuthenticationStrengthPolicyType from .authentication_strength_requirements import AuthenticationStrengthRequirements - from .entity import Entity + from .policy_deletable_item import PolicyDeletableItem from .authentication_combination_configuration import AuthenticationCombinationConfiguration from .authentication_method_modes import AuthenticationMethodModes from .authentication_strength_policy_type import AuthenticationStrengthPolicyType from .authentication_strength_requirements import AuthenticationStrengthRequirements - from .entity import Entity + from .policy_deletable_item import PolicyDeletableItem fields: dict[str, Callable[[Any], None]] = { "allowedCombinations": lambda n : setattr(self, 'allowed_combinations', n.get_collection_of_enum_values(AuthenticationMethodModes)), @@ -69,6 +71,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "createdDateTime": lambda n : setattr(self, 'created_date_time', n.get_datetime_value()), "description": lambda n : setattr(self, 'description', n.get_str_value()), "displayName": lambda n : setattr(self, 'display_name', n.get_str_value()), + "id": lambda n : setattr(self, 'id', n.get_str_value()), "modifiedDateTime": lambda n : setattr(self, 'modified_date_time', n.get_datetime_value()), "policyType": lambda n : setattr(self, 'policy_type', n.get_enum_value(AuthenticationStrengthPolicyType)), "requirementsSatisfied": lambda n : setattr(self, 'requirements_satisfied', n.get_collection_of_enum_values(AuthenticationStrengthRequirements)), @@ -91,6 +94,7 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_datetime_value("createdDateTime", self.created_date_time) writer.write_str_value("description", self.description) writer.write_str_value("displayName", self.display_name) + writer.write_str_value("id", self.id) writer.write_datetime_value("modifiedDateTime", self.modified_date_time) writer.write_enum_value("policyType", self.policy_type) writer.write_enum_value("requirementsSatisfied", self.requirements_satisfied) diff --git a/msgraph_beta/generated/models/backup_count_statistics.py b/msgraph_beta/generated/models/backup_count_statistics.py index 945939c76ec..7d58dfa1c1f 100644 --- a/msgraph_beta/generated/models/backup_count_statistics.py +++ b/msgraph_beta/generated/models/backup_count_statistics.py @@ -13,27 +13,27 @@ class BackupCountStatistics(AdditionalDataHolder, BackedModel, Parsable): # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. additional_data: dict[str, Any] = field(default_factory=dict) - # The lastComputedDateTime property + # The date and time when this metric was calculated. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. last_computed_date_time: Optional[datetime.datetime] = None # The OdataType property odata_type: Optional[str] = None - # The offboardRequested property + # The count of artifacts in offboardRequested state. This metric captures artifacts in protection‑unit–level offboarding and artifacts offboarded due to an unhealthy billing profile. offboard_requested: Optional[int] = None - # The protectedCompleted property + # The count of artifacts in protected state. protected_completed: Optional[int] = None - # The protectedFailed property + # The count of artifacts whose protection was attempted but failed. These artifacts typically have unprotected as their status. protected_failed: Optional[int] = None - # The protectedInProgress property + # The count of artifacts whose protection attempt is currently in progress. This metric applies to artifacts for which the process to start or resume taking backups is still required. protected_in_progress: Optional[int] = None - # The removed property + # The count of artifacts not associated with any policy. This property is always null for a policy-level report. Nullable. removed: Optional[int] = None - # The total property + # The count of artifacts in the specified entity. The currently supported entity is a backup policy. total: Optional[int] = None - # The unprotectedCompleted property + # The count of artifacts that are no longer actively protected. These artifacts have historical restore points, but no new backups are being taken. unprotected_completed: Optional[int] = None - # The unprotectedFailed property + # The count of artifacts for which unprotection was attempted but didn't complete. These artifacts are typically in the protected state. unprotected_failed: Optional[int] = None - # The unprotectedInProgress property + # The count of artifacts for which unprotection is currently in progress. unprotected_in_progress: Optional[int] = None @staticmethod diff --git a/msgraph_beta/generated/models/backup_policy_report.py b/msgraph_beta/generated/models/backup_policy_report.py index fe6a7d2dcc7..87973d29437 100644 --- a/msgraph_beta/generated/models/backup_policy_report.py +++ b/msgraph_beta/generated/models/backup_policy_report.py @@ -15,11 +15,11 @@ class BackupPolicyReport(AdditionalDataHolder, BackedModel, Parsable): # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. additional_data: dict[str, Any] = field(default_factory=dict) - # The backupPolicyId property + # The ID of the backup policy. backup_policy_id: Optional[str] = None # The countStatistics property count_statistics: Optional[BackupCountStatistics] = None - # The displayName property + # The display name of the backup policy. display_name: Optional[str] = None # The OdataType property odata_type: Optional[str] = None diff --git a/msgraph_beta/generated/models/backup_restore_root.py b/msgraph_beta/generated/models/backup_restore_root.py index 25abb798fcd..f2ebf80bea1 100644 --- a/msgraph_beta/generated/models/backup_restore_root.py +++ b/msgraph_beta/generated/models/backup_restore_root.py @@ -89,7 +89,7 @@ class BackupRestoreRoot(Entity, Parsable): protection_policies: Optional[list[ProtectionPolicyBase]] = None # List of protection units in the tenant. protection_units: Optional[list[ProtectionUnitBase]] = None - # The reports property + # Report corresponding to a protection policy. reports: Optional[BackupReport] = None # List of restore points in the tenant. restore_points: Optional[list[RestorePoint]] = None diff --git a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_notification_settings.py b/msgraph_beta/generated/models/chunk_offsets.py similarity index 63% rename from msgraph_beta/generated/models/identity_governance/lifecycle_policy_notification_settings.py rename to msgraph_beta/generated/models/chunk_offsets.py index 5f514a7bf80..9ef3180badc 100644 --- a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_notification_settings.py +++ b/msgraph_beta/generated/models/chunk_offsets.py @@ -6,31 +6,29 @@ from typing import Any, Optional, TYPE_CHECKING, Union @dataclass -class LifecyclePolicyNotificationSettings(AdditionalDataHolder, BackedModel, Parsable): +class ChunkOffsets(AdditionalDataHolder, BackedModel, Parsable): # Stores model information. backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. additional_data: dict[str, Any] = field(default_factory=dict) - # The additionalRecipients property - additional_recipients: Optional[list[str]] = None - # The isEnabled property - is_enabled: Optional[bool] = None + # An optional base64 string that encodes a packed sequence of little-endian signed 32-bit integers. Decoded values represent chunk lengths and must be nonnegative. The decoded byte count must be divisible by 4. When supplied, the decoded element count must match starts, and elements pair by index. + lengths: Optional[str] = None # The OdataType property odata_type: Optional[str] = None - # The offsetsAfterNonComplianceInDays property - offsets_after_non_compliance_in_days: Optional[list[int]] = None + # A base64 string that encodes a packed sequence of little-endian signed 64-bit integers. Decoded values represent chunk start positions and must be nonnegative and in ascending order. The decoded byte count must be divisible by 8. + starts: Optional[str] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> LifecyclePolicyNotificationSettings: + def create_from_discriminator_value(parse_node: ParseNode) -> ChunkOffsets: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: LifecyclePolicyNotificationSettings + Returns: ChunkOffsets """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return LifecyclePolicyNotificationSettings() + return ChunkOffsets() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ @@ -38,10 +36,9 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: Returns: dict[str, Callable[[ParseNode], None]] """ fields: dict[str, Callable[[Any], None]] = { - "additionalRecipients": lambda n : setattr(self, 'additional_recipients', n.get_collection_of_primitive_values(str)), - "isEnabled": lambda n : setattr(self, 'is_enabled', n.get_bool_value()), + "lengths": lambda n : setattr(self, 'lengths', n.get_str_value()), "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), - "offsetsAfterNonComplianceInDays": lambda n : setattr(self, 'offsets_after_non_compliance_in_days', n.get_collection_of_primitive_values(int)), + "starts": lambda n : setattr(self, 'starts', n.get_str_value()), } return fields @@ -53,10 +50,9 @@ def serialize(self,writer: SerializationWriter) -> None: """ if writer is None: raise TypeError("writer cannot be null.") - writer.write_collection_of_primitive_values("additionalRecipients", self.additional_recipients) - writer.write_bool_value("isEnabled", self.is_enabled) + writer.write_str_value("lengths", self.lengths) writer.write_str_value("@odata.type", self.odata_type) - writer.write_collection_of_primitive_values("offsetsAfterNonComplianceInDays", self.offsets_after_non_compliance_in_days) + writer.write_str_value("starts", self.starts) writer.write_additional_data_value(self.additional_data) diff --git a/msgraph_beta/generated/models/classification_method.py b/msgraph_beta/generated/models/classification_method.py index a98bce29622..75bfa12923f 100644 --- a/msgraph_beta/generated/models/classification_method.py +++ b/msgraph_beta/generated/models/classification_method.py @@ -5,4 +5,7 @@ class ClassificationMethod(str, Enum): ExactDataMatch = "exactDataMatch", Fingerprint = "fingerprint", MachineLearning = "machineLearning", + PrivacyDataMatch = "privacyDataMatch", + AiPowered = "aiPowered", + UnknownFutureValue = "unknownFutureValue", diff --git a/msgraph_beta/generated/models/cloud_communications.py b/msgraph_beta/generated/models/cloud_communications.py index c630a31bdb2..c1b6fb55928 100644 --- a/msgraph_beta/generated/models/cloud_communications.py +++ b/msgraph_beta/generated/models/cloud_communications.py @@ -15,9 +15,6 @@ @dataclass class CloudCommunications(AdditionalDataHolder, BackedModel, Parsable): - """ - Represents a container that exposes navigation properties for cloud communications resources. - """ # Stores model information. backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) diff --git a/msgraph_beta/generated/models/cloud_p_c.py b/msgraph_beta/generated/models/cloud_p_c.py index 1361cf52fd1..ea697485b56 100644 --- a/msgraph_beta/generated/models/cloud_p_c.py +++ b/msgraph_beta/generated/models/cloud_p_c.py @@ -61,7 +61,7 @@ class CloudPC(Entity, Parsable): group_detail: Optional[CloudPcEntraGroupDetail] = None # Name of the OS image that's on the Cloud PC. image_display_name: Optional[str] = None - # The isDisasterRecoveryActive property + # Indicates whether the Cloud PC currently runs in its disaster recovery region after a failover event. true if the Cloud PC is currently running in its disaster recovery region; otherwise, false. Read-only. is_disaster_recovery_active: Optional[bool] = None # The last login result of the Cloud PC. For example, { 'time': '2014-01-01T00:00:00Z'}. last_login_result: Optional[CloudPcLoginResult] = None @@ -89,7 +89,7 @@ class CloudPC(Entity, Parsable): product_type: Optional[CloudPcProductType] = None # The latest provisioned date and time, automatically generated and assigned during the initial provisioning or any subsequent reprovisioning of the Cloud PC. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. provisioned_date_time: Optional[datetime.datetime] = None - # The provisioningConfiguration property + # The policy-derived configuration of the Cloud PC. Contains properties inherited from the provisioning policy that were applied during the most recent provisioning or reprovisioning. Returned only when explicitly selected with $select. Read-only. provisioning_configuration: Optional[CloudPcProvisioningConfiguration] = None # The provisioning policy ID of the Cloud PC. provisioning_policy_id: Optional[str] = None diff --git a/msgraph_beta/generated/models/cloud_pc_performance_metric_names_type.py b/msgraph_beta/generated/models/cloud_pc_performance_metric_names_type.py new file mode 100644 index 00000000000..a0a3252b837 --- /dev/null +++ b/msgraph_beta/generated/models/cloud_pc_performance_metric_names_type.py @@ -0,0 +1,17 @@ +from enum import Enum + +class CloudPcPerformanceMetricNamesType(str, Enum): + CpuUsageInPercentage = "cpuUsageInPercentage", + AvailableMemoryInPercentage = "availableMemoryInPercentage", + VmAvailability = "vmAvailability", + NetworkInboundInBytes = "networkInboundInBytes", + NetworkOutboundInBytes = "networkOutboundInBytes", + InboundFlowsCount = "inboundFlowsCount", + OutboundFlowsCount = "outboundFlowsCount", + DiskReadInBytes = "diskReadInBytes", + DiskWriteInBytes = "diskWriteInBytes", + DiskReadOperationsPerSecond = "diskReadOperationsPerSecond", + DiskWriteOperationsPerSecond = "diskWriteOperationsPerSecond", + OsDiskLatencyInMs = "osDiskLatencyInMs", + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/cloud_pc_vm_performance_metrics_time_range.py b/msgraph_beta/generated/models/cloud_pc_vm_performance_metrics_time_range.py new file mode 100644 index 00000000000..f38779fb77a --- /dev/null +++ b/msgraph_beta/generated/models/cloud_pc_vm_performance_metrics_time_range.py @@ -0,0 +1,14 @@ +from enum import Enum + +class CloudPcVmPerformanceMetricsTimeRange(str, Enum): + Last2Hours = "last2Hours", + Last4Hours = "last4Hours", + Last12Hours = "last12Hours", + Last24Hours = "last24Hours", + Last48Hours = "last48Hours", + Last4Days = "last4Days", + Last7Days = "last7Days", + Last14Days = "last14Days", + Last28Days = "last28Days", + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/comms_operation.py b/msgraph_beta/generated/models/comms_operation.py index afb2112fbdb..5570078a630 100644 --- a/msgraph_beta/generated/models/comms_operation.py +++ b/msgraph_beta/generated/models/comms_operation.py @@ -6,8 +6,6 @@ if TYPE_CHECKING: from .add_large_gallery_view_operation import AddLargeGalleryViewOperation - from .admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - from .admit_from_lobby_operation import AdmitFromLobbyOperation from .cancel_media_processing_operation import CancelMediaProcessingOperation from .entity import Entity from .invite_participants_operation import InviteParticipantsOperation @@ -16,7 +14,6 @@ from .operation_status import OperationStatus from .play_prompt_operation import PlayPromptOperation from .record_operation import RecordOperation - from .remove_from_lobby_operation import RemoveFromLobbyOperation from .result_info import ResultInfo from .send_dtmf_tones_operation import SendDtmfTonesOperation from .start_hold_music_operation import StartHoldMusicOperation @@ -60,14 +57,6 @@ def create_from_discriminator_value(parse_node: ParseNode) -> CommsOperation: from .add_large_gallery_view_operation import AddLargeGalleryViewOperation return AddLargeGalleryViewOperation() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.admitAllFromLobbyOperation".casefold(): - from .admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - - return AdmitAllFromLobbyOperation() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.admitFromLobbyOperation".casefold(): - from .admit_from_lobby_operation import AdmitFromLobbyOperation - - return AdmitFromLobbyOperation() if mapping_value and mapping_value.casefold() == "#microsoft.graph.cancelMediaProcessingOperation".casefold(): from .cancel_media_processing_operation import CancelMediaProcessingOperation @@ -92,10 +81,6 @@ def create_from_discriminator_value(parse_node: ParseNode) -> CommsOperation: from .record_operation import RecordOperation return RecordOperation() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.removeFromLobbyOperation".casefold(): - from .remove_from_lobby_operation import RemoveFromLobbyOperation - - return RemoveFromLobbyOperation() if mapping_value and mapping_value.casefold() == "#microsoft.graph.sendDtmfTonesOperation".casefold(): from .send_dtmf_tones_operation import SendDtmfTonesOperation @@ -144,8 +129,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: Returns: dict[str, Callable[[ParseNode], None]] """ from .add_large_gallery_view_operation import AddLargeGalleryViewOperation - from .admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - from .admit_from_lobby_operation import AdmitFromLobbyOperation from .cancel_media_processing_operation import CancelMediaProcessingOperation from .entity import Entity from .invite_participants_operation import InviteParticipantsOperation @@ -154,7 +137,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .operation_status import OperationStatus from .play_prompt_operation import PlayPromptOperation from .record_operation import RecordOperation - from .remove_from_lobby_operation import RemoveFromLobbyOperation from .result_info import ResultInfo from .send_dtmf_tones_operation import SendDtmfTonesOperation from .start_hold_music_operation import StartHoldMusicOperation @@ -168,8 +150,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .update_recording_status_operation import UpdateRecordingStatusOperation from .add_large_gallery_view_operation import AddLargeGalleryViewOperation - from .admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - from .admit_from_lobby_operation import AdmitFromLobbyOperation from .cancel_media_processing_operation import CancelMediaProcessingOperation from .entity import Entity from .invite_participants_operation import InviteParticipantsOperation @@ -178,7 +158,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .operation_status import OperationStatus from .play_prompt_operation import PlayPromptOperation from .record_operation import RecordOperation - from .remove_from_lobby_operation import RemoveFromLobbyOperation from .result_info import ResultInfo from .send_dtmf_tones_operation import SendDtmfTonesOperation from .start_hold_music_operation import StartHoldMusicOperation diff --git a/msgraph_beta/generated/communications/calls/item/participants/item/admit_from_lobby/admit_from_lobby_post_request_body.py b/msgraph_beta/generated/models/conditional_access_agent_context.py similarity index 61% rename from msgraph_beta/generated/communications/calls/item/participants/item/admit_from_lobby/admit_from_lobby_post_request_body.py rename to msgraph_beta/generated/models/conditional_access_agent_context.py index 83915610bf3..d85549b5a71 100644 --- a/msgraph_beta/generated/communications/calls/item/participants/item/admit_from_lobby/admit_from_lobby_post_request_body.py +++ b/msgraph_beta/generated/models/conditional_access_agent_context.py @@ -6,25 +6,32 @@ from typing import Any, Optional, TYPE_CHECKING, Union @dataclass -class AdmitFromLobbyPostRequestBody(AdditionalDataHolder, BackedModel, Parsable): +class ConditionalAccessAgentContext(AdditionalDataHolder, BackedModel, Parsable): + """ + Represents the agent context condition for conditional access policies. + """ # Stores model information. backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. additional_data: dict[str, Any] = field(default_factory=dict) - # The clientContext property - client_context: Optional[str] = None + # The excludeAgentContexts property + exclude_agent_contexts: Optional[list[str]] = None + # The includeAgentContexts property + include_agent_contexts: Optional[list[str]] = None + # The OdataType property + odata_type: Optional[str] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AdmitFromLobbyPostRequestBody: + def create_from_discriminator_value(parse_node: ParseNode) -> ConditionalAccessAgentContext: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AdmitFromLobbyPostRequestBody + Returns: ConditionalAccessAgentContext """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AdmitFromLobbyPostRequestBody() + return ConditionalAccessAgentContext() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ @@ -32,7 +39,9 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: Returns: dict[str, Callable[[ParseNode], None]] """ fields: dict[str, Callable[[Any], None]] = { - "clientContext": lambda n : setattr(self, 'client_context', n.get_str_value()), + "excludeAgentContexts": lambda n : setattr(self, 'exclude_agent_contexts', n.get_collection_of_primitive_values(str)), + "includeAgentContexts": lambda n : setattr(self, 'include_agent_contexts', n.get_collection_of_primitive_values(str)), + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), } return fields @@ -44,7 +53,9 @@ def serialize(self,writer: SerializationWriter) -> None: """ if writer is None: raise TypeError("writer cannot be null.") - writer.write_str_value("clientContext", self.client_context) + writer.write_collection_of_primitive_values("excludeAgentContexts", self.exclude_agent_contexts) + writer.write_collection_of_primitive_values("includeAgentContexts", self.include_agent_contexts) + writer.write_str_value("@odata.type", self.odata_type) writer.write_additional_data_value(self.additional_data) diff --git a/msgraph_beta/generated/communications/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_post_request_body.py b/msgraph_beta/generated/models/conditional_access_agents.py similarity index 55% rename from msgraph_beta/generated/communications/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_post_request_body.py rename to msgraph_beta/generated/models/conditional_access_agents.py index a910c94c8d9..d640c6f4818 100644 --- a/msgraph_beta/generated/communications/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_post_request_body.py +++ b/msgraph_beta/generated/models/conditional_access_agents.py @@ -5,34 +5,50 @@ from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton from typing import Any, Optional, TYPE_CHECKING, Union +if TYPE_CHECKING: + from .conditional_access_filter import ConditionalAccessFilter + @dataclass -class AdmitAllFromLobbyPostRequestBody(AdditionalDataHolder, BackedModel, Parsable): +class ConditionalAccessAgents(AdditionalDataHolder, BackedModel, Parsable): # Stores model information. backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. additional_data: dict[str, Any] = field(default_factory=dict) - # The clientContext property - client_context: Optional[str] = None + # The agentFilter property + agent_filter: Optional[ConditionalAccessFilter] = None + # The excludeAgentUsers property + exclude_agent_users: Optional[list[str]] = None + # The includeAgentUsers property + include_agent_users: Optional[list[str]] = None + # The OdataType property + odata_type: Optional[str] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AdmitAllFromLobbyPostRequestBody: + def create_from_discriminator_value(parse_node: ParseNode) -> ConditionalAccessAgents: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AdmitAllFromLobbyPostRequestBody + Returns: ConditionalAccessAgents """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AdmitAllFromLobbyPostRequestBody() + return ConditionalAccessAgents() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ + from .conditional_access_filter import ConditionalAccessFilter + + from .conditional_access_filter import ConditionalAccessFilter + fields: dict[str, Callable[[Any], None]] = { - "clientContext": lambda n : setattr(self, 'client_context', n.get_str_value()), + "agentFilter": lambda n : setattr(self, 'agent_filter', n.get_object_value(ConditionalAccessFilter)), + "excludeAgentUsers": lambda n : setattr(self, 'exclude_agent_users', n.get_collection_of_primitive_values(str)), + "includeAgentUsers": lambda n : setattr(self, 'include_agent_users', n.get_collection_of_primitive_values(str)), + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), } return fields @@ -44,7 +60,10 @@ def serialize(self,writer: SerializationWriter) -> None: """ if writer is None: raise TypeError("writer cannot be null.") - writer.write_str_value("clientContext", self.client_context) + writer.write_object_value("agentFilter", self.agent_filter) + writer.write_collection_of_primitive_values("excludeAgentUsers", self.exclude_agent_users) + writer.write_collection_of_primitive_values("includeAgentUsers", self.include_agent_users) + writer.write_str_value("@odata.type", self.odata_type) writer.write_additional_data_value(self.additional_data) diff --git a/msgraph_beta/generated/models/conditional_access_condition_set.py b/msgraph_beta/generated/models/conditional_access_condition_set.py index eec69fd252e..4caa88161c8 100644 --- a/msgraph_beta/generated/models/conditional_access_condition_set.py +++ b/msgraph_beta/generated/models/conditional_access_condition_set.py @@ -6,6 +6,8 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: + from .conditional_access_agents import ConditionalAccessAgents + from .conditional_access_agent_context import ConditionalAccessAgentContext from .conditional_access_agent_id_risk_levels import ConditionalAccessAgentIdRiskLevels from .conditional_access_applications import ConditionalAccessApplications from .conditional_access_authentication_flows import ConditionalAccessAuthenticationFlows @@ -26,8 +28,12 @@ class ConditionalAccessConditionSet(AdditionalDataHolder, BackedModel, Parsable) # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. additional_data: dict[str, Any] = field(default_factory=dict) + # The agentContext property + agent_context: Optional[ConditionalAccessAgentContext] = None # Agent identity risk levels included in the policy. The possible values are: low, medium, high, unknownFutureValue. This enumeration is multivalued. agent_id_risk_levels: Optional[ConditionalAccessAgentIdRiskLevels] = None + # The agents property + agents: Optional[ConditionalAccessAgents] = None # Applications and user actions included in and excluded from the policy. Required. applications: Optional[ConditionalAccessApplications] = None # Authentication flows included in the policy scope. For more information, see Conditional Access: Authentication flows. @@ -73,6 +79,8 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ + from .conditional_access_agents import ConditionalAccessAgents + from .conditional_access_agent_context import ConditionalAccessAgentContext from .conditional_access_agent_id_risk_levels import ConditionalAccessAgentIdRiskLevels from .conditional_access_applications import ConditionalAccessApplications from .conditional_access_authentication_flows import ConditionalAccessAuthenticationFlows @@ -86,6 +94,8 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .conditional_access_users import ConditionalAccessUsers from .risk_level import RiskLevel + from .conditional_access_agents import ConditionalAccessAgents + from .conditional_access_agent_context import ConditionalAccessAgentContext from .conditional_access_agent_id_risk_levels import ConditionalAccessAgentIdRiskLevels from .conditional_access_applications import ConditionalAccessApplications from .conditional_access_authentication_flows import ConditionalAccessAuthenticationFlows @@ -100,7 +110,9 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .risk_level import RiskLevel fields: dict[str, Callable[[Any], None]] = { + "agentContext": lambda n : setattr(self, 'agent_context', n.get_object_value(ConditionalAccessAgentContext)), "agentIdRiskLevels": lambda n : setattr(self, 'agent_id_risk_levels', n.get_collection_of_enum_values(ConditionalAccessAgentIdRiskLevels)), + "agents": lambda n : setattr(self, 'agents', n.get_object_value(ConditionalAccessAgents)), "applications": lambda n : setattr(self, 'applications', n.get_object_value(ConditionalAccessApplications)), "authenticationFlows": lambda n : setattr(self, 'authentication_flows', n.get_object_value(ConditionalAccessAuthenticationFlows)), "clientAppTypes": lambda n : setattr(self, 'client_app_types', n.get_collection_of_enum_values(ConditionalAccessClientApp)), @@ -126,7 +138,9 @@ def serialize(self,writer: SerializationWriter) -> None: """ if writer is None: raise TypeError("writer cannot be null.") + writer.write_object_value("agentContext", self.agent_context) writer.write_enum_value("agentIdRiskLevels", self.agent_id_risk_levels) + writer.write_object_value("agents", self.agents) writer.write_object_value("applications", self.applications) writer.write_object_value("authenticationFlows", self.authentication_flows) writer.write_collection_of_enum_values("clientAppTypes", self.client_app_types) diff --git a/msgraph_beta/generated/models/copilot_package.py b/msgraph_beta/generated/models/copilot_package.py index ca30d014982..6d0c528eee7 100644 --- a/msgraph_beta/generated/models/copilot_package.py +++ b/msgraph_beta/generated/models/copilot_package.py @@ -7,6 +7,8 @@ if TYPE_CHECKING: from .copilot_package_detail import CopilotPackageDetail + from .copilot_package_request_status import CopilotPackageRequestStatus + from .copilot_package_request_type import CopilotPackageRequestType from .entity import Entity from .package_status import PackageStatus from .package_type import PackageType @@ -47,6 +49,10 @@ class CopilotPackage(Entity, Parsable): platform: Optional[str] = None # The publisher property publisher: Optional[str] = None + # The requestStatus property + request_status: Optional[CopilotPackageRequestStatus] = None + # The requestType property + request_type: Optional[CopilotPackageRequestType] = None # The shortDescription property short_description: Optional[str] = None # The supportedHosts property @@ -84,11 +90,15 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: Returns: dict[str, Callable[[ParseNode], None]] """ from .copilot_package_detail import CopilotPackageDetail + from .copilot_package_request_status import CopilotPackageRequestStatus + from .copilot_package_request_type import CopilotPackageRequestType from .entity import Entity from .package_status import PackageStatus from .package_type import PackageType from .copilot_package_detail import CopilotPackageDetail + from .copilot_package_request_status import CopilotPackageRequestStatus + from .copilot_package_request_type import CopilotPackageRequestType from .entity import Entity from .package_status import PackageStatus from .package_type import PackageType @@ -109,6 +119,8 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "ownerId": lambda n : setattr(self, 'owner_id', n.get_str_value()), "platform": lambda n : setattr(self, 'platform', n.get_str_value()), "publisher": lambda n : setattr(self, 'publisher', n.get_str_value()), + "requestStatus": lambda n : setattr(self, 'request_status', n.get_enum_value(CopilotPackageRequestStatus)), + "requestType": lambda n : setattr(self, 'request_type', n.get_enum_value(CopilotPackageRequestType)), "shortDescription": lambda n : setattr(self, 'short_description', n.get_str_value()), "supportedHosts": lambda n : setattr(self, 'supported_hosts', n.get_collection_of_primitive_values(str)), "type": lambda n : setattr(self, 'type', n.get_enum_value(PackageType)), @@ -143,6 +155,8 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_str_value("ownerId", self.owner_id) writer.write_str_value("platform", self.platform) writer.write_str_value("publisher", self.publisher) + writer.write_enum_value("requestStatus", self.request_status) + writer.write_enum_value("requestType", self.request_type) writer.write_str_value("shortDescription", self.short_description) writer.write_collection_of_primitive_values("supportedHosts", self.supported_hosts) writer.write_enum_value("type", self.type) diff --git a/msgraph_beta/generated/models/copilot_package_request_status.py b/msgraph_beta/generated/models/copilot_package_request_status.py new file mode 100644 index 00000000000..42ecb843295 --- /dev/null +++ b/msgraph_beta/generated/models/copilot_package_request_status.py @@ -0,0 +1,12 @@ +from enum import Enum + +class CopilotPackageRequestStatus(str, Enum): + # The request is awaiting a decision. + Pending = "pending", + # The request was approved. + Approved = "approved", + # The request was rejected. + Rejected = "rejected", + # An evolvable sentinel for future request statuses. + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/copilot_package_request_type.py b/msgraph_beta/generated/models/copilot_package_request_type.py new file mode 100644 index 00000000000..a2cdc17facf --- /dev/null +++ b/msgraph_beta/generated/models/copilot_package_request_type.py @@ -0,0 +1,14 @@ +from enum import Enum + +class CopilotPackageRequestType(str, Enum): + # A request to publish a package. + Publish = "publish", + # A request to activate a package. + Activate = "activate", + # A request to grant package access. + Access = "access", + # A request to update a package. + Update = "update", + # An evolvable sentinel for future request types. + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/deleted_item_container.py b/msgraph_beta/generated/models/deleted_item_container.py index 3ffec62a6a3..62386ba5a86 100644 --- a/msgraph_beta/generated/models/deleted_item_container.py +++ b/msgraph_beta/generated/models/deleted_item_container.py @@ -6,15 +6,12 @@ if TYPE_CHECKING: from .entity import Entity - from .identity_governance.lifecycle_policy import LifecyclePolicy from .identity_governance.workflow import Workflow from .entity import Entity @dataclass class DeletedItemContainer(Entity, Parsable): - # The lifecyclePolicies property - lifecycle_policies: Optional[list[LifecyclePolicy]] = None # The OdataType property odata_type: Optional[str] = None # Deleted workflows that end up in the deletedItemsContainer. @@ -37,15 +34,12 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: Returns: dict[str, Callable[[ParseNode], None]] """ from .entity import Entity - from .identity_governance.lifecycle_policy import LifecyclePolicy from .identity_governance.workflow import Workflow from .entity import Entity - from .identity_governance.lifecycle_policy import LifecyclePolicy from .identity_governance.workflow import Workflow fields: dict[str, Callable[[Any], None]] = { - "lifecyclePolicies": lambda n : setattr(self, 'lifecycle_policies', n.get_collection_of_object_values(LifecyclePolicy)), "workflows": lambda n : setattr(self, 'workflows', n.get_collection_of_object_values(Workflow)), } super_fields = super().get_field_deserializers() @@ -61,7 +55,6 @@ def serialize(self,writer: SerializationWriter) -> None: if writer is None: raise TypeError("writer cannot be null.") super().serialize(writer) - writer.write_collection_of_object_values("lifecyclePolicies", self.lifecycle_policies) writer.write_collection_of_object_values("workflows", self.workflows) diff --git a/msgraph_beta/generated/models/device_management_configuration_template_family.py b/msgraph_beta/generated/models/device_management_configuration_template_family.py index 57f2dd77a08..79720095ba3 100644 --- a/msgraph_beta/generated/models/device_management_configuration_template_family.py +++ b/msgraph_beta/generated/models/device_management_configuration_template_family.py @@ -37,4 +37,6 @@ class DeviceManagementConfigurationTemplateFamily(str, Enum): CompanyPortal = "companyPortal", # Windows Recovery and Remediation Configuration Policy WindowsRecoveryAndRemediationConfiguration = "windowsRecoveryAndRemediationConfiguration", + # Indicates Template Family for Maintenance Windows templates + MaintenanceWindows = "maintenanceWindows", diff --git a/msgraph_beta/generated/app/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_post_request_body.py b/msgraph_beta/generated/models/drift_access_package_info.py similarity index 69% rename from msgraph_beta/generated/app/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_post_request_body.py rename to msgraph_beta/generated/models/drift_access_package_info.py index a910c94c8d9..f72787a4345 100644 --- a/msgraph_beta/generated/app/calls/item/participants/admit_all_from_lobby/admit_all_from_lobby_post_request_body.py +++ b/msgraph_beta/generated/models/drift_access_package_info.py @@ -6,25 +6,29 @@ from typing import Any, Optional, TYPE_CHECKING, Union @dataclass -class AdmitAllFromLobbyPostRequestBody(AdditionalDataHolder, BackedModel, Parsable): +class DriftAccessPackageInfo(AdditionalDataHolder, BackedModel, Parsable): # Stores model information. backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. additional_data: dict[str, Any] = field(default_factory=dict) - # The clientContext property - client_context: Optional[str] = None + # The displayName property + display_name: Optional[str] = None + # The identifier property + identifier: Optional[str] = None + # The OdataType property + odata_type: Optional[str] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AdmitAllFromLobbyPostRequestBody: + def create_from_discriminator_value(parse_node: ParseNode) -> DriftAccessPackageInfo: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AdmitAllFromLobbyPostRequestBody + Returns: DriftAccessPackageInfo """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AdmitAllFromLobbyPostRequestBody() + return DriftAccessPackageInfo() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ @@ -32,7 +36,9 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: Returns: dict[str, Callable[[ParseNode], None]] """ fields: dict[str, Callable[[Any], None]] = { - "clientContext": lambda n : setattr(self, 'client_context', n.get_str_value()), + "displayName": lambda n : setattr(self, 'display_name', n.get_str_value()), + "identifier": lambda n : setattr(self, 'identifier', n.get_str_value()), + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), } return fields @@ -44,7 +50,9 @@ def serialize(self,writer: SerializationWriter) -> None: """ if writer is None: raise TypeError("writer cannot be null.") - writer.write_str_value("clientContext", self.client_context) + writer.write_str_value("displayName", self.display_name) + writer.write_str_value("identifier", self.identifier) + writer.write_str_value("@odata.type", self.odata_type) writer.write_additional_data_value(self.additional_data) diff --git a/msgraph_beta/generated/app/calls/item/participants/item/remove_from_lobby/remove_from_lobby_post_request_body.py b/msgraph_beta/generated/models/drift_counts.py similarity index 66% rename from msgraph_beta/generated/app/calls/item/participants/item/remove_from_lobby/remove_from_lobby_post_request_body.py rename to msgraph_beta/generated/models/drift_counts.py index 61398f081e1..9f9e2dfd9d7 100644 --- a/msgraph_beta/generated/app/calls/item/participants/item/remove_from_lobby/remove_from_lobby_post_request_body.py +++ b/msgraph_beta/generated/models/drift_counts.py @@ -6,25 +6,31 @@ from typing import Any, Optional, TYPE_CHECKING, Union @dataclass -class RemoveFromLobbyPostRequestBody(AdditionalDataHolder, BackedModel, Parsable): +class DriftCounts(AdditionalDataHolder, BackedModel, Parsable): # Stores model information. backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. additional_data: dict[str, Any] = field(default_factory=dict) - # The clientContext property - client_context: Optional[str] = None + # The missing property + missing: Optional[int] = None + # The OdataType property + odata_type: Optional[str] = None + # The total property + total: Optional[int] = None + # The unauthorized property + unauthorized: Optional[int] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> RemoveFromLobbyPostRequestBody: + def create_from_discriminator_value(parse_node: ParseNode) -> DriftCounts: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: RemoveFromLobbyPostRequestBody + Returns: DriftCounts """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return RemoveFromLobbyPostRequestBody() + return DriftCounts() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ @@ -32,7 +38,10 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: Returns: dict[str, Callable[[ParseNode], None]] """ fields: dict[str, Callable[[Any], None]] = { - "clientContext": lambda n : setattr(self, 'client_context', n.get_str_value()), + "missing": lambda n : setattr(self, 'missing', n.get_int_value()), + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), + "total": lambda n : setattr(self, 'total', n.get_int_value()), + "unauthorized": lambda n : setattr(self, 'unauthorized', n.get_int_value()), } return fields @@ -44,7 +53,10 @@ def serialize(self,writer: SerializationWriter) -> None: """ if writer is None: raise TypeError("writer cannot be null.") - writer.write_str_value("clientContext", self.client_context) + writer.write_int_value("missing", self.missing) + writer.write_str_value("@odata.type", self.odata_type) + writer.write_int_value("total", self.total) + writer.write_int_value("unauthorized", self.unauthorized) writer.write_additional_data_value(self.additional_data) diff --git a/msgraph_beta/generated/models/drift_identity_info.py b/msgraph_beta/generated/models/drift_identity_info.py new file mode 100644 index 00000000000..650d53e1cb6 --- /dev/null +++ b/msgraph_beta/generated/models/drift_identity_info.py @@ -0,0 +1,85 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter +from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .entra_drift_identity_info import EntraDriftIdentityInfo + from .local_drift_identity_info import LocalDriftIdentityInfo + +@dataclass +class DriftIdentityInfo(AdditionalDataHolder, BackedModel, Parsable): + # Stores model information. + backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) + + # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + additional_data: dict[str, Any] = field(default_factory=dict) + # The displayName property + display_name: Optional[str] = None + # The identifier property + identifier: Optional[str] = None + # The OdataType property + odata_type: Optional[str] = None + # The principalName property + principal_name: Optional[str] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> DriftIdentityInfo: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: DriftIdentityInfo + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + try: + child_node = parse_node.get_child_node("@odata.type") + mapping_value = child_node.get_str_value() if child_node else None + except AttributeError: + mapping_value = None + if mapping_value and mapping_value.casefold() == "#microsoft.graph.entraDriftIdentityInfo".casefold(): + from .entra_drift_identity_info import EntraDriftIdentityInfo + + return EntraDriftIdentityInfo() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.localDriftIdentityInfo".casefold(): + from .local_drift_identity_info import LocalDriftIdentityInfo + + return LocalDriftIdentityInfo() + return DriftIdentityInfo() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .entra_drift_identity_info import EntraDriftIdentityInfo + from .local_drift_identity_info import LocalDriftIdentityInfo + + from .entra_drift_identity_info import EntraDriftIdentityInfo + from .local_drift_identity_info import LocalDriftIdentityInfo + + fields: dict[str, Callable[[Any], None]] = { + "displayName": lambda n : setattr(self, 'display_name', n.get_str_value()), + "identifier": lambda n : setattr(self, 'identifier', n.get_str_value()), + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), + "principalName": lambda n : setattr(self, 'principal_name', n.get_str_value()), + } + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + writer.write_str_value("displayName", self.display_name) + writer.write_str_value("identifier", self.identifier) + writer.write_str_value("@odata.type", self.odata_type) + writer.write_str_value("principalName", self.principal_name) + writer.write_additional_data_value(self.additional_data) + + diff --git a/msgraph_beta/generated/models/drift_resource_info.py b/msgraph_beta/generated/models/drift_resource_info.py new file mode 100644 index 00000000000..0e47e02ccc9 --- /dev/null +++ b/msgraph_beta/generated/models/drift_resource_info.py @@ -0,0 +1,96 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter +from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .access_drift_resource_type import AccessDriftResourceType + from .application_drift_resource_info import ApplicationDriftResourceInfo + from .group_drift_resource_info import GroupDriftResourceInfo + +@dataclass +class DriftResourceInfo(AdditionalDataHolder, BackedModel, Parsable): + # Stores model information. + backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) + + # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + additional_data: dict[str, Any] = field(default_factory=dict) + # The catalogIdentifier property + catalog_identifier: Optional[str] = None + # The catalogName property + catalog_name: Optional[str] = None + # The displayName property + display_name: Optional[str] = None + # The identifier property + identifier: Optional[str] = None + # The OdataType property + odata_type: Optional[str] = None + # The type property + type: Optional[AccessDriftResourceType] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> DriftResourceInfo: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: DriftResourceInfo + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + try: + child_node = parse_node.get_child_node("@odata.type") + mapping_value = child_node.get_str_value() if child_node else None + except AttributeError: + mapping_value = None + if mapping_value and mapping_value.casefold() == "#microsoft.graph.applicationDriftResourceInfo".casefold(): + from .application_drift_resource_info import ApplicationDriftResourceInfo + + return ApplicationDriftResourceInfo() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.groupDriftResourceInfo".casefold(): + from .group_drift_resource_info import GroupDriftResourceInfo + + return GroupDriftResourceInfo() + return DriftResourceInfo() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .access_drift_resource_type import AccessDriftResourceType + from .application_drift_resource_info import ApplicationDriftResourceInfo + from .group_drift_resource_info import GroupDriftResourceInfo + + from .access_drift_resource_type import AccessDriftResourceType + from .application_drift_resource_info import ApplicationDriftResourceInfo + from .group_drift_resource_info import GroupDriftResourceInfo + + fields: dict[str, Callable[[Any], None]] = { + "catalogIdentifier": lambda n : setattr(self, 'catalog_identifier', n.get_str_value()), + "catalogName": lambda n : setattr(self, 'catalog_name', n.get_str_value()), + "displayName": lambda n : setattr(self, 'display_name', n.get_str_value()), + "identifier": lambda n : setattr(self, 'identifier', n.get_str_value()), + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), + "type": lambda n : setattr(self, 'type', n.get_enum_value(AccessDriftResourceType)), + } + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + writer.write_str_value("catalogIdentifier", self.catalog_identifier) + writer.write_str_value("catalogName", self.catalog_name) + writer.write_str_value("displayName", self.display_name) + writer.write_str_value("identifier", self.identifier) + writer.write_str_value("@odata.type", self.odata_type) + writer.write_enum_value("type", self.type) + writer.write_additional_data_value(self.additional_data) + + diff --git a/msgraph_beta/generated/models/embedding_input.py b/msgraph_beta/generated/models/embedding_input.py index f4f3e97a89c..ec626e8d426 100644 --- a/msgraph_beta/generated/models/embedding_input.py +++ b/msgraph_beta/generated/models/embedding_input.py @@ -5,6 +5,9 @@ from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton from typing import Any, Optional, TYPE_CHECKING, Union +if TYPE_CHECKING: + from .chunk_offsets import ChunkOffsets + @dataclass class EmbeddingInput(AdditionalDataHolder, BackedModel, Parsable): # Stores model information. @@ -12,6 +15,8 @@ class EmbeddingInput(AdditionalDataHolder, BackedModel, Parsable): # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. additional_data: dict[str, Any] = field(default_factory=dict) + # Optional offset metadata for the text chunks that produced this embedding data. The starts property is required when chunkOffsets is present. When lengths is also present, the decoded element counts must match and pair by index. + chunk_offsets: Optional[ChunkOffsets] = None # The embedding vectors the model produced for the text, encoded as a base64 string of little-endian 32-bit floats. Every vector the model emitted (for example, one per text chunk) is concatenated in order; each contributes exactly the modelType's embedding dimension worth of float components, so the decoded length must be a whole multiple of that dimension. data: Optional[str] = None # The embedding model identifier drawn from the service allow-list (for example: text-embedding-3-small-512). Unique (case-insensitive) within the embeddings collection; entries whose modelType is outside the allow-list are rejected with a 400. @@ -35,7 +40,12 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ + from .chunk_offsets import ChunkOffsets + + from .chunk_offsets import ChunkOffsets + fields: dict[str, Callable[[Any], None]] = { + "chunkOffsets": lambda n : setattr(self, 'chunk_offsets', n.get_object_value(ChunkOffsets)), "data": lambda n : setattr(self, 'data', n.get_str_value()), "modelType": lambda n : setattr(self, 'model_type', n.get_str_value()), "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), @@ -50,6 +60,7 @@ def serialize(self,writer: SerializationWriter) -> None: """ if writer is None: raise TypeError("writer cannot be null.") + writer.write_object_value("chunkOffsets", self.chunk_offsets) writer.write_str_value("data", self.data) writer.write_str_value("modelType", self.model_type) writer.write_str_value("@odata.type", self.odata_type) diff --git a/msgraph_beta/generated/models/entity.py b/msgraph_beta/generated/models/entity.py index 67dfbb2620d..ef193484531 100644 --- a/msgraph_beta/generated/models/entity.py +++ b/msgraph_beta/generated/models/entity.py @@ -7,6 +7,9 @@ if TYPE_CHECKING: from .aad_user_conversation_member import AadUserConversationMember + from .access_drift_detail import AccessDriftDetail + from .access_drift_report import AccessDriftReport + from .access_drift_summary import AccessDriftSummary from .access_package import AccessPackage from .access_package_assignment import AccessPackageAssignment from .access_package_assignment_policy import AccessPackageAssignmentPolicy @@ -53,8 +56,6 @@ from .admin_todo import AdminTodo from .admin_windows import AdminWindows from .admin_windows_updates import AdminWindowsUpdates - from .admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - from .admit_from_lobby_operation import AdmitFromLobbyOperation from .advanced_threat_protection_onboarding_device_setting_state import AdvancedThreatProtectionOnboardingDeviceSettingState from .advanced_threat_protection_onboarding_state_summary import AdvancedThreatProtectionOnboardingStateSummary from .agent import Agent @@ -82,6 +83,7 @@ from .alert import Alert from .allowed_data_location import AllowedDataLocation from .allowed_value import AllowedValue + from .android_aosp_referenced_app import AndroidAospReferencedApp from .android_app_configuration_schema import AndroidAppConfigurationSchema from .android_certificate_profile_base import AndroidCertificateProfileBase from .android_compliance_policy import AndroidCompliancePolicy @@ -152,6 +154,9 @@ from .android_work_profile_trusted_root_certificate import AndroidWorkProfileTrustedRootCertificate from .android_work_profile_vpn_configuration import AndroidWorkProfileVpnConfiguration from .android_work_profile_wi_fi_configuration import AndroidWorkProfileWiFiConfiguration + from .anonymous_calendar_sharing_free_busy_detail import AnonymousCalendarSharingFreeBusyDetail + from .anonymous_calendar_sharing_free_busy_reviewer import AnonymousCalendarSharingFreeBusyReviewer + from .anonymous_calendar_sharing_free_busy_simple import AnonymousCalendarSharingFreeBusySimple from .anonymous_guest_conversation_member import AnonymousGuestConversationMember from .aosp_device_owner_certificate_profile_base import AospDeviceOwnerCertificateProfileBase from .aosp_device_owner_compliance_policy import AospDeviceOwnerCompliancePolicy @@ -219,13 +224,11 @@ from .authentication_flows_policy import AuthenticationFlowsPolicy from .authentication_listener import AuthenticationListener from .authentication_method import AuthenticationMethod - from .authentication_methods_policy import AuthenticationMethodsPolicy from .authentication_methods_root import AuthenticationMethodsRoot from .authentication_method_configuration import AuthenticationMethodConfiguration from .authentication_method_device import AuthenticationMethodDevice from .authentication_method_mode_detail import AuthenticationMethodModeDetail from .authentication_method_target import AuthenticationMethodTarget - from .authentication_strength_policy import AuthenticationStrengthPolicy from .authentication_strength_root import AuthenticationStrengthRoot from .authored_note import AuthoredNote from .authorization_policy import AuthorizationPolicy @@ -767,6 +770,7 @@ from .entitlement_management import EntitlementManagement from .entitlement_management_settings import EntitlementManagementSettings from .entra import Entra + from .entra_access_drift_detail import EntraAccessDriftDetail from .entra_id_protection_risky_user_approval import EntraIdProtectionRiskyUserApproval from .entra_recovery_services.recovery import Recovery from .entra_recovery_services.recovery_change_object_base import RecoveryChangeObjectBase @@ -928,22 +932,11 @@ from .identity_correlation import IdentityCorrelation from .identity_custom_user_flow_attribute import IdentityCustomUserFlowAttribute from .identity_finding import IdentityFinding - from .identity_governance.agent_identity_lifecycle import AgentIdentityLifecycle - from .identity_governance.agent_identity_lifecycle_policy import AgentIdentityLifecyclePolicy - from .identity_governance.attestation_compliance_issue import AttestationComplianceIssue - from .identity_governance.compliance_issue import ComplianceIssue from .identity_governance.custom_task_extension import CustomTaskExtension - from .identity_governance.identity_lifecycle import IdentityLifecycle - from .identity_governance.inactivity_rule import InactivityRule from .identity_governance.insights import Insights from .identity_governance.lifecycle_management_settings import LifecycleManagementSettings - from .identity_governance.lifecycle_policy import LifecyclePolicy - from .identity_governance.lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration - from .identity_governance.lifecycle_policy_rule import LifecyclePolicyRule from .identity_governance.lifecycle_workflows_container import LifecycleWorkflowsContainer - from .identity_governance.periodic_attestation_rule import PeriodicAttestationRule from .identity_governance.run import Run - from .identity_governance.sponsor_presence_rule import SponsorPresenceRule from .identity_governance.subject_processing_result import SubjectProcessingResult from .identity_governance.task import Task from .identity_governance.task_definition import TaskDefinition @@ -1614,7 +1607,6 @@ from .remote_assistance_settings import RemoteAssistanceSettings from .remote_desktop_security_configuration import RemoteDesktopSecurityConfiguration from .remote_tenant_group import RemoteTenantGroup - from .remove_from_lobby_operation import RemoveFromLobbyOperation from .reports_root import ReportsRoot from .report_root import ReportRoot from .request import Request @@ -2004,6 +1996,7 @@ from .template import Template from .temporary_access_pass_authentication_method import TemporaryAccessPassAuthenticationMethod from .temporary_access_pass_authentication_method_configuration import TemporaryAccessPassAuthenticationMethodConfiguration + from .tenant_activities_container import TenantActivitiesContainer from .tenant_app_management_policy import TenantAppManagementPolicy from .tenant_attach_r_b_a_c import TenantAttachRBAC from .tenant_data_security_and_governance import TenantDataSecurityAndGovernance @@ -2433,6 +2426,18 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .aad_user_conversation_member import AadUserConversationMember return AadUserConversationMember() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.accessDriftDetail".casefold(): + from .access_drift_detail import AccessDriftDetail + + return AccessDriftDetail() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.accessDriftReport".casefold(): + from .access_drift_report import AccessDriftReport + + return AccessDriftReport() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.accessDriftSummary".casefold(): + from .access_drift_summary import AccessDriftSummary + + return AccessDriftSummary() if mapping_value and mapping_value.casefold() == "#microsoft.graph.accessPackage".casefold(): from .access_package import AccessPackage @@ -2617,14 +2622,6 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .admin_windows_updates import AdminWindowsUpdates return AdminWindowsUpdates() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.admitAllFromLobbyOperation".casefold(): - from .admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - - return AdmitAllFromLobbyOperation() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.admitFromLobbyOperation".casefold(): - from .admit_from_lobby_operation import AdmitFromLobbyOperation - - return AdmitFromLobbyOperation() if mapping_value and mapping_value.casefold() == "#microsoft.graph.advancedThreatProtectionOnboardingDeviceSettingState".casefold(): from .advanced_threat_protection_onboarding_device_setting_state import AdvancedThreatProtectionOnboardingDeviceSettingState @@ -2736,6 +2733,10 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .allowed_value import AllowedValue return AllowedValue() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.androidAospReferencedApp".casefold(): + from .android_aosp_referenced_app import AndroidAospReferencedApp + + return AndroidAospReferencedApp() if mapping_value and mapping_value.casefold() == "#microsoft.graph.androidAppConfigurationSchema".casefold(): from .android_app_configuration_schema import AndroidAppConfigurationSchema @@ -3016,6 +3017,18 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .android_work_profile_wi_fi_configuration import AndroidWorkProfileWiFiConfiguration return AndroidWorkProfileWiFiConfiguration() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.anonymousCalendarSharingFreeBusyDetail".casefold(): + from .anonymous_calendar_sharing_free_busy_detail import AnonymousCalendarSharingFreeBusyDetail + + return AnonymousCalendarSharingFreeBusyDetail() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.anonymousCalendarSharingFreeBusyReviewer".casefold(): + from .anonymous_calendar_sharing_free_busy_reviewer import AnonymousCalendarSharingFreeBusyReviewer + + return AnonymousCalendarSharingFreeBusyReviewer() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.anonymousCalendarSharingFreeBusySimple".casefold(): + from .anonymous_calendar_sharing_free_busy_simple import AnonymousCalendarSharingFreeBusySimple + + return AnonymousCalendarSharingFreeBusySimple() if mapping_value and mapping_value.casefold() == "#microsoft.graph.anonymousGuestConversationMember".casefold(): from .anonymous_guest_conversation_member import AnonymousGuestConversationMember @@ -3294,10 +3307,6 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .authentication_method_mode_detail import AuthenticationMethodModeDetail return AuthenticationMethodModeDetail() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.authenticationMethodsPolicy".casefold(): - from .authentication_methods_policy import AuthenticationMethodsPolicy - - return AuthenticationMethodsPolicy() if mapping_value and mapping_value.casefold() == "#microsoft.graph.authenticationMethodsRoot".casefold(): from .authentication_methods_root import AuthenticationMethodsRoot @@ -3310,10 +3319,6 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .authentications_metric import AuthenticationsMetric return AuthenticationsMetric() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.authenticationStrengthPolicy".casefold(): - from .authentication_strength_policy import AuthenticationStrengthPolicy - - return AuthenticationStrengthPolicy() if mapping_value and mapping_value.casefold() == "#microsoft.graph.authenticationStrengthRoot".casefold(): from .authentication_strength_root import AuthenticationStrengthRoot @@ -5496,6 +5501,10 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .entra import Entra return Entra() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.entraAccessDriftDetail".casefold(): + from .entra_access_drift_detail import EntraAccessDriftDetail + + return EntraAccessDriftDetail() if mapping_value and mapping_value.casefold() == "#microsoft.graph.entraIdProtectionRiskyUserApproval".casefold(): from .entra_id_protection_risky_user_approval import EntraIdProtectionRiskyUserApproval @@ -6148,34 +6157,10 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .identity_finding import IdentityFinding return IdentityFinding() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.agentIdentityLifecycle".casefold(): - from .identity_governance.agent_identity_lifecycle import AgentIdentityLifecycle - - return AgentIdentityLifecycle() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.agentIdentityLifecyclePolicy".casefold(): - from .identity_governance.agent_identity_lifecycle_policy import AgentIdentityLifecyclePolicy - - return AgentIdentityLifecyclePolicy() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.attestationComplianceIssue".casefold(): - from .identity_governance.attestation_compliance_issue import AttestationComplianceIssue - - return AttestationComplianceIssue() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.complianceIssue".casefold(): - from .identity_governance.compliance_issue import ComplianceIssue - - return ComplianceIssue() if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.customTaskExtension".casefold(): from .identity_governance.custom_task_extension import CustomTaskExtension return CustomTaskExtension() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.identityLifecycle".casefold(): - from .identity_governance.identity_lifecycle import IdentityLifecycle - - return IdentityLifecycle() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.inactivityRule".casefold(): - from .identity_governance.inactivity_rule import InactivityRule - - return InactivityRule() if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.insights".casefold(): from .identity_governance.insights import Insights @@ -6184,34 +6169,14 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .identity_governance.lifecycle_management_settings import LifecycleManagementSettings return LifecycleManagementSettings() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.lifecyclePolicy".casefold(): - from .identity_governance.lifecycle_policy import LifecyclePolicy - - return LifecyclePolicy() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.lifecyclePolicyPriorityConfiguration".casefold(): - from .identity_governance.lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration - - return LifecyclePolicyPriorityConfiguration() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.lifecyclePolicyRule".casefold(): - from .identity_governance.lifecycle_policy_rule import LifecyclePolicyRule - - return LifecyclePolicyRule() if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.lifecycleWorkflowsContainer".casefold(): from .identity_governance.lifecycle_workflows_container import LifecycleWorkflowsContainer return LifecycleWorkflowsContainer() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.periodicAttestationRule".casefold(): - from .identity_governance.periodic_attestation_rule import PeriodicAttestationRule - - return PeriodicAttestationRule() if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.run".casefold(): from .identity_governance.run import Run return Run() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.sponsorPresenceRule".casefold(): - from .identity_governance.sponsor_presence_rule import SponsorPresenceRule - - return SponsorPresenceRule() if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.subjectProcessingResult".casefold(): from .identity_governance.subject_processing_result import SubjectProcessingResult @@ -8908,10 +8873,6 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .remote_tenant_group import RemoteTenantGroup return RemoteTenantGroup() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.removeFromLobbyOperation".casefold(): - from .remove_from_lobby_operation import RemoveFromLobbyOperation - - return RemoveFromLobbyOperation() if mapping_value and mapping_value.casefold() == "#microsoft.graph.reportRoot".casefold(): from .report_root import ReportRoot @@ -10493,6 +10454,10 @@ def create_from_discriminator_value(parse_node: ParseNode) -> Entity: from .temporary_access_pass_authentication_method_configuration import TemporaryAccessPassAuthenticationMethodConfiguration return TemporaryAccessPassAuthenticationMethodConfiguration() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.tenantActivitiesContainer".casefold(): + from .tenant_activities_container import TenantActivitiesContainer + + return TenantActivitiesContainer() if mapping_value and mapping_value.casefold() == "#microsoft.graph.tenantAppManagementPolicy".casefold(): from .tenant_app_management_policy import TenantAppManagementPolicy @@ -12101,6 +12066,9 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: Returns: dict[str, Callable[[ParseNode], None]] """ from .aad_user_conversation_member import AadUserConversationMember + from .access_drift_detail import AccessDriftDetail + from .access_drift_report import AccessDriftReport + from .access_drift_summary import AccessDriftSummary from .access_package import AccessPackage from .access_package_assignment import AccessPackageAssignment from .access_package_assignment_policy import AccessPackageAssignmentPolicy @@ -12147,8 +12115,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .admin_todo import AdminTodo from .admin_windows import AdminWindows from .admin_windows_updates import AdminWindowsUpdates - from .admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - from .admit_from_lobby_operation import AdmitFromLobbyOperation from .advanced_threat_protection_onboarding_device_setting_state import AdvancedThreatProtectionOnboardingDeviceSettingState from .advanced_threat_protection_onboarding_state_summary import AdvancedThreatProtectionOnboardingStateSummary from .agent import Agent @@ -12176,6 +12142,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .alert import Alert from .allowed_data_location import AllowedDataLocation from .allowed_value import AllowedValue + from .android_aosp_referenced_app import AndroidAospReferencedApp from .android_app_configuration_schema import AndroidAppConfigurationSchema from .android_certificate_profile_base import AndroidCertificateProfileBase from .android_compliance_policy import AndroidCompliancePolicy @@ -12246,6 +12213,9 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .android_work_profile_trusted_root_certificate import AndroidWorkProfileTrustedRootCertificate from .android_work_profile_vpn_configuration import AndroidWorkProfileVpnConfiguration from .android_work_profile_wi_fi_configuration import AndroidWorkProfileWiFiConfiguration + from .anonymous_calendar_sharing_free_busy_detail import AnonymousCalendarSharingFreeBusyDetail + from .anonymous_calendar_sharing_free_busy_reviewer import AnonymousCalendarSharingFreeBusyReviewer + from .anonymous_calendar_sharing_free_busy_simple import AnonymousCalendarSharingFreeBusySimple from .anonymous_guest_conversation_member import AnonymousGuestConversationMember from .aosp_device_owner_certificate_profile_base import AospDeviceOwnerCertificateProfileBase from .aosp_device_owner_compliance_policy import AospDeviceOwnerCompliancePolicy @@ -12313,13 +12283,11 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .authentication_flows_policy import AuthenticationFlowsPolicy from .authentication_listener import AuthenticationListener from .authentication_method import AuthenticationMethod - from .authentication_methods_policy import AuthenticationMethodsPolicy from .authentication_methods_root import AuthenticationMethodsRoot from .authentication_method_configuration import AuthenticationMethodConfiguration from .authentication_method_device import AuthenticationMethodDevice from .authentication_method_mode_detail import AuthenticationMethodModeDetail from .authentication_method_target import AuthenticationMethodTarget - from .authentication_strength_policy import AuthenticationStrengthPolicy from .authentication_strength_root import AuthenticationStrengthRoot from .authored_note import AuthoredNote from .authorization_policy import AuthorizationPolicy @@ -12861,6 +12829,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .entitlement_management import EntitlementManagement from .entitlement_management_settings import EntitlementManagementSettings from .entra import Entra + from .entra_access_drift_detail import EntraAccessDriftDetail from .entra_id_protection_risky_user_approval import EntraIdProtectionRiskyUserApproval from .entra_recovery_services.recovery import Recovery from .entra_recovery_services.recovery_change_object_base import RecoveryChangeObjectBase @@ -13022,22 +12991,11 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .identity_correlation import IdentityCorrelation from .identity_custom_user_flow_attribute import IdentityCustomUserFlowAttribute from .identity_finding import IdentityFinding - from .identity_governance.agent_identity_lifecycle import AgentIdentityLifecycle - from .identity_governance.agent_identity_lifecycle_policy import AgentIdentityLifecyclePolicy - from .identity_governance.attestation_compliance_issue import AttestationComplianceIssue - from .identity_governance.compliance_issue import ComplianceIssue from .identity_governance.custom_task_extension import CustomTaskExtension - from .identity_governance.identity_lifecycle import IdentityLifecycle - from .identity_governance.inactivity_rule import InactivityRule from .identity_governance.insights import Insights from .identity_governance.lifecycle_management_settings import LifecycleManagementSettings - from .identity_governance.lifecycle_policy import LifecyclePolicy - from .identity_governance.lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration - from .identity_governance.lifecycle_policy_rule import LifecyclePolicyRule from .identity_governance.lifecycle_workflows_container import LifecycleWorkflowsContainer - from .identity_governance.periodic_attestation_rule import PeriodicAttestationRule from .identity_governance.run import Run - from .identity_governance.sponsor_presence_rule import SponsorPresenceRule from .identity_governance.subject_processing_result import SubjectProcessingResult from .identity_governance.task import Task from .identity_governance.task_definition import TaskDefinition @@ -13708,7 +13666,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .remote_assistance_settings import RemoteAssistanceSettings from .remote_desktop_security_configuration import RemoteDesktopSecurityConfiguration from .remote_tenant_group import RemoteTenantGroup - from .remove_from_lobby_operation import RemoveFromLobbyOperation from .reports_root import ReportsRoot from .report_root import ReportRoot from .request import Request @@ -14098,6 +14055,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .template import Template from .temporary_access_pass_authentication_method import TemporaryAccessPassAuthenticationMethod from .temporary_access_pass_authentication_method_configuration import TemporaryAccessPassAuthenticationMethodConfiguration + from .tenant_activities_container import TenantActivitiesContainer from .tenant_app_management_policy import TenantAppManagementPolicy from .tenant_attach_r_b_a_c import TenantAttachRBAC from .tenant_data_security_and_governance import TenantDataSecurityAndGovernance @@ -14498,6 +14456,9 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .zebra_fota_deployment import ZebraFotaDeployment from .aad_user_conversation_member import AadUserConversationMember + from .access_drift_detail import AccessDriftDetail + from .access_drift_report import AccessDriftReport + from .access_drift_summary import AccessDriftSummary from .access_package import AccessPackage from .access_package_assignment import AccessPackageAssignment from .access_package_assignment_policy import AccessPackageAssignmentPolicy @@ -14544,8 +14505,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .admin_todo import AdminTodo from .admin_windows import AdminWindows from .admin_windows_updates import AdminWindowsUpdates - from .admit_all_from_lobby_operation import AdmitAllFromLobbyOperation - from .admit_from_lobby_operation import AdmitFromLobbyOperation from .advanced_threat_protection_onboarding_device_setting_state import AdvancedThreatProtectionOnboardingDeviceSettingState from .advanced_threat_protection_onboarding_state_summary import AdvancedThreatProtectionOnboardingStateSummary from .agent import Agent @@ -14573,6 +14532,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .alert import Alert from .allowed_data_location import AllowedDataLocation from .allowed_value import AllowedValue + from .android_aosp_referenced_app import AndroidAospReferencedApp from .android_app_configuration_schema import AndroidAppConfigurationSchema from .android_certificate_profile_base import AndroidCertificateProfileBase from .android_compliance_policy import AndroidCompliancePolicy @@ -14643,6 +14603,9 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .android_work_profile_trusted_root_certificate import AndroidWorkProfileTrustedRootCertificate from .android_work_profile_vpn_configuration import AndroidWorkProfileVpnConfiguration from .android_work_profile_wi_fi_configuration import AndroidWorkProfileWiFiConfiguration + from .anonymous_calendar_sharing_free_busy_detail import AnonymousCalendarSharingFreeBusyDetail + from .anonymous_calendar_sharing_free_busy_reviewer import AnonymousCalendarSharingFreeBusyReviewer + from .anonymous_calendar_sharing_free_busy_simple import AnonymousCalendarSharingFreeBusySimple from .anonymous_guest_conversation_member import AnonymousGuestConversationMember from .aosp_device_owner_certificate_profile_base import AospDeviceOwnerCertificateProfileBase from .aosp_device_owner_compliance_policy import AospDeviceOwnerCompliancePolicy @@ -14710,13 +14673,11 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .authentication_flows_policy import AuthenticationFlowsPolicy from .authentication_listener import AuthenticationListener from .authentication_method import AuthenticationMethod - from .authentication_methods_policy import AuthenticationMethodsPolicy from .authentication_methods_root import AuthenticationMethodsRoot from .authentication_method_configuration import AuthenticationMethodConfiguration from .authentication_method_device import AuthenticationMethodDevice from .authentication_method_mode_detail import AuthenticationMethodModeDetail from .authentication_method_target import AuthenticationMethodTarget - from .authentication_strength_policy import AuthenticationStrengthPolicy from .authentication_strength_root import AuthenticationStrengthRoot from .authored_note import AuthoredNote from .authorization_policy import AuthorizationPolicy @@ -15258,6 +15219,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .entitlement_management import EntitlementManagement from .entitlement_management_settings import EntitlementManagementSettings from .entra import Entra + from .entra_access_drift_detail import EntraAccessDriftDetail from .entra_id_protection_risky_user_approval import EntraIdProtectionRiskyUserApproval from .entra_recovery_services.recovery import Recovery from .entra_recovery_services.recovery_change_object_base import RecoveryChangeObjectBase @@ -15419,22 +15381,11 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .identity_correlation import IdentityCorrelation from .identity_custom_user_flow_attribute import IdentityCustomUserFlowAttribute from .identity_finding import IdentityFinding - from .identity_governance.agent_identity_lifecycle import AgentIdentityLifecycle - from .identity_governance.agent_identity_lifecycle_policy import AgentIdentityLifecyclePolicy - from .identity_governance.attestation_compliance_issue import AttestationComplianceIssue - from .identity_governance.compliance_issue import ComplianceIssue from .identity_governance.custom_task_extension import CustomTaskExtension - from .identity_governance.identity_lifecycle import IdentityLifecycle - from .identity_governance.inactivity_rule import InactivityRule from .identity_governance.insights import Insights from .identity_governance.lifecycle_management_settings import LifecycleManagementSettings - from .identity_governance.lifecycle_policy import LifecyclePolicy - from .identity_governance.lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration - from .identity_governance.lifecycle_policy_rule import LifecyclePolicyRule from .identity_governance.lifecycle_workflows_container import LifecycleWorkflowsContainer - from .identity_governance.periodic_attestation_rule import PeriodicAttestationRule from .identity_governance.run import Run - from .identity_governance.sponsor_presence_rule import SponsorPresenceRule from .identity_governance.subject_processing_result import SubjectProcessingResult from .identity_governance.task import Task from .identity_governance.task_definition import TaskDefinition @@ -16105,7 +16056,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .remote_assistance_settings import RemoteAssistanceSettings from .remote_desktop_security_configuration import RemoteDesktopSecurityConfiguration from .remote_tenant_group import RemoteTenantGroup - from .remove_from_lobby_operation import RemoveFromLobbyOperation from .reports_root import ReportsRoot from .report_root import ReportRoot from .request import Request @@ -16495,6 +16445,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .template import Template from .temporary_access_pass_authentication_method import TemporaryAccessPassAuthenticationMethod from .temporary_access_pass_authentication_method_configuration import TemporaryAccessPassAuthenticationMethodConfiguration + from .tenant_activities_container import TenantActivitiesContainer from .tenant_app_management_policy import TenantAppManagementPolicy from .tenant_attach_r_b_a_c import TenantAttachRBAC from .tenant_data_security_and_governance import TenantDataSecurityAndGovernance diff --git a/msgraph_beta/generated/models/identity_governance/attestation_compliance_issue.py b/msgraph_beta/generated/models/entra_access_drift_detail.py similarity index 57% rename from msgraph_beta/generated/models/identity_governance/attestation_compliance_issue.py rename to msgraph_beta/generated/models/entra_access_drift_detail.py index e3221e1c3f7..a5fded7683e 100644 --- a/msgraph_beta/generated/models/identity_governance/attestation_compliance_issue.py +++ b/msgraph_beta/generated/models/entra_access_drift_detail.py @@ -5,39 +5,48 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from .compliance_issue import ComplianceIssue + from .access_drift_detail import AccessDriftDetail + from .drift_access_package_info import DriftAccessPackageInfo -from .compliance_issue import ComplianceIssue +from .access_drift_detail import AccessDriftDetail @dataclass -class AttestationComplianceIssue(ComplianceIssue, Parsable): - # The attestationBlockReasons property - attestation_block_reasons: Optional[list[str]] = None +class EntraAccessDriftDetail(AccessDriftDetail, Parsable): + # The accessPackage property + access_package: Optional[DriftAccessPackageInfo] = None + # The assignedRole property + assigned_role: Optional[str] = None + # The expectedRole property + expected_role: Optional[str] = None # The OdataType property odata_type: Optional[str] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AttestationComplianceIssue: + def create_from_discriminator_value(parse_node: ParseNode) -> EntraAccessDriftDetail: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AttestationComplianceIssue + Returns: EntraAccessDriftDetail """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AttestationComplianceIssue() + return EntraAccessDriftDetail() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from .compliance_issue import ComplianceIssue + from .access_drift_detail import AccessDriftDetail + from .drift_access_package_info import DriftAccessPackageInfo - from .compliance_issue import ComplianceIssue + from .access_drift_detail import AccessDriftDetail + from .drift_access_package_info import DriftAccessPackageInfo fields: dict[str, Callable[[Any], None]] = { - "attestationBlockReasons": lambda n : setattr(self, 'attestation_block_reasons', n.get_collection_of_primitive_values(str)), + "accessPackage": lambda n : setattr(self, 'access_package', n.get_object_value(DriftAccessPackageInfo)), + "assignedRole": lambda n : setattr(self, 'assigned_role', n.get_str_value()), + "expectedRole": lambda n : setattr(self, 'expected_role', n.get_str_value()), } super_fields = super().get_field_deserializers() fields.update(super_fields) @@ -52,6 +61,5 @@ def serialize(self,writer: SerializationWriter) -> None: if writer is None: raise TypeError("writer cannot be null.") super().serialize(writer) - writer.write_collection_of_primitive_values("attestationBlockReasons", self.attestation_block_reasons) diff --git a/msgraph_beta/generated/models/remove_from_lobby_operation.py b/msgraph_beta/generated/models/entra_drift_identity_info.py similarity index 76% rename from msgraph_beta/generated/models/remove_from_lobby_operation.py rename to msgraph_beta/generated/models/entra_drift_identity_info.py index b6c35cdf881..977a4a1c48f 100644 --- a/msgraph_beta/generated/models/remove_from_lobby_operation.py +++ b/msgraph_beta/generated/models/entra_drift_identity_info.py @@ -5,34 +5,34 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from .comms_operation import CommsOperation + from .drift_identity_info import DriftIdentityInfo -from .comms_operation import CommsOperation +from .drift_identity_info import DriftIdentityInfo @dataclass -class RemoveFromLobbyOperation(CommsOperation, Parsable): +class EntraDriftIdentityInfo(DriftIdentityInfo, Parsable): # The OdataType property - odata_type: Optional[str] = None + odata_type: Optional[str] = "#microsoft.graph.entraDriftIdentityInfo" @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> RemoveFromLobbyOperation: + def create_from_discriminator_value(parse_node: ParseNode) -> EntraDriftIdentityInfo: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: RemoveFromLobbyOperation + Returns: EntraDriftIdentityInfo """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return RemoveFromLobbyOperation() + return EntraDriftIdentityInfo() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from .comms_operation import CommsOperation + from .drift_identity_info import DriftIdentityInfo - from .comms_operation import CommsOperation + from .drift_identity_info import DriftIdentityInfo fields: dict[str, Callable[[Any], None]] = { } diff --git a/msgraph_beta/generated/models/exchange_message_trace_status.py b/msgraph_beta/generated/models/exchange_message_trace_status.py index ca85293098d..27bf34cae4e 100644 --- a/msgraph_beta/generated/models/exchange_message_trace_status.py +++ b/msgraph_beta/generated/models/exchange_message_trace_status.py @@ -9,4 +9,5 @@ class ExchangeMessageTraceStatus(str, Enum): Quarantined = "quarantined", FilteredAsSpam = "filteredAsSpam", UnknownFutureValue = "unknownFutureValue", + Recalled = "recalled", diff --git a/msgraph_beta/generated/models/admit_all_from_lobby_operation.py b/msgraph_beta/generated/models/group_drift_resource_info.py similarity index 76% rename from msgraph_beta/generated/models/admit_all_from_lobby_operation.py rename to msgraph_beta/generated/models/group_drift_resource_info.py index b48570d38b8..11205ab1fcc 100644 --- a/msgraph_beta/generated/models/admit_all_from_lobby_operation.py +++ b/msgraph_beta/generated/models/group_drift_resource_info.py @@ -5,34 +5,34 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from .comms_operation import CommsOperation + from .drift_resource_info import DriftResourceInfo -from .comms_operation import CommsOperation +from .drift_resource_info import DriftResourceInfo @dataclass -class AdmitAllFromLobbyOperation(CommsOperation, Parsable): +class GroupDriftResourceInfo(DriftResourceInfo, Parsable): # The OdataType property - odata_type: Optional[str] = None + odata_type: Optional[str] = "#microsoft.graph.groupDriftResourceInfo" @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AdmitAllFromLobbyOperation: + def create_from_discriminator_value(parse_node: ParseNode) -> GroupDriftResourceInfo: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AdmitAllFromLobbyOperation + Returns: GroupDriftResourceInfo """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AdmitAllFromLobbyOperation() + return GroupDriftResourceInfo() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from .comms_operation import CommsOperation + from .drift_resource_info import DriftResourceInfo - from .comms_operation import CommsOperation + from .drift_resource_info import DriftResourceInfo fields: dict[str, Callable[[Any], None]] = { } diff --git a/msgraph_beta/generated/models/identity_governance/compliance_issue.py b/msgraph_beta/generated/models/identity_governance/compliance_issue.py deleted file mode 100644 index 964211a0d95..00000000000 --- a/msgraph_beta/generated/models/identity_governance/compliance_issue.py +++ /dev/null @@ -1,81 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter -from typing import Any, Optional, TYPE_CHECKING, Union - -if TYPE_CHECKING: - from ..entity import Entity - from .attestation_compliance_issue import AttestationComplianceIssue - -from ..entity import Entity - -@dataclass -class ComplianceIssue(Entity, Parsable): - # The description property - description: Optional[str] = None - # The governingPolicyReferenceId property - governing_policy_reference_id: Optional[str] = None - # The issueCode property - issue_code: Optional[str] = None - # The OdataType property - odata_type: Optional[str] = None - # The ruleType property - rule_type: Optional[str] = None - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> ComplianceIssue: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: ComplianceIssue - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - try: - child_node = parse_node.get_child_node("@odata.type") - mapping_value = child_node.get_str_value() if child_node else None - except AttributeError: - mapping_value = None - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.attestationComplianceIssue".casefold(): - from .attestation_compliance_issue import AttestationComplianceIssue - - return AttestationComplianceIssue() - return ComplianceIssue() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - from ..entity import Entity - from .attestation_compliance_issue import AttestationComplianceIssue - - from ..entity import Entity - from .attestation_compliance_issue import AttestationComplianceIssue - - fields: dict[str, Callable[[Any], None]] = { - "description": lambda n : setattr(self, 'description', n.get_str_value()), - "governingPolicyReferenceId": lambda n : setattr(self, 'governing_policy_reference_id', n.get_str_value()), - "issueCode": lambda n : setattr(self, 'issue_code', n.get_str_value()), - "ruleType": lambda n : setattr(self, 'rule_type', n.get_str_value()), - } - super_fields = super().get_field_deserializers() - fields.update(super_fields) - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - super().serialize(writer) - writer.write_str_value("description", self.description) - writer.write_str_value("governingPolicyReferenceId", self.governing_policy_reference_id) - writer.write_str_value("issueCode", self.issue_code) - writer.write_str_value("ruleType", self.rule_type) - - diff --git a/msgraph_beta/generated/models/identity_governance/disable_only_enforcement_action.py b/msgraph_beta/generated/models/identity_governance/disable_only_enforcement_action.py deleted file mode 100644 index cc5eeab10e3..00000000000 --- a/msgraph_beta/generated/models/identity_governance/disable_only_enforcement_action.py +++ /dev/null @@ -1,53 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter -from typing import Any, Optional, TYPE_CHECKING, Union - -if TYPE_CHECKING: - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - -from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - -@dataclass -class DisableOnlyEnforcementAction(LifecyclePolicyEnforcementAction, Parsable): - # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.disableOnlyEnforcementAction" - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> DisableOnlyEnforcementAction: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: DisableOnlyEnforcementAction - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - return DisableOnlyEnforcementAction() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - - fields: dict[str, Callable[[Any], None]] = { - } - super_fields = super().get_field_deserializers() - fields.update(super_fields) - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - super().serialize(writer) - - diff --git a/msgraph_beta/generated/models/identity_governance/disable_then_delete_enforcement_action.py b/msgraph_beta/generated/models/identity_governance/disable_then_delete_enforcement_action.py deleted file mode 100644 index e03fd27265b..00000000000 --- a/msgraph_beta/generated/models/identity_governance/disable_then_delete_enforcement_action.py +++ /dev/null @@ -1,57 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter -from typing import Any, Optional, TYPE_CHECKING, Union - -if TYPE_CHECKING: - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - -from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - -@dataclass -class DisableThenDeleteEnforcementAction(LifecyclePolicyEnforcementAction, Parsable): - # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.disableThenDeleteEnforcementAction" - # The deletionGracePeriodInDays property - deletion_grace_period_in_days: Optional[int] = None - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> DisableThenDeleteEnforcementAction: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: DisableThenDeleteEnforcementAction - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - return DisableThenDeleteEnforcementAction() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - - fields: dict[str, Callable[[Any], None]] = { - "deletionGracePeriodInDays": lambda n : setattr(self, 'deletion_grace_period_in_days', n.get_int_value()), - } - super_fields = super().get_field_deserializers() - fields.update(super_fields) - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - super().serialize(writer) - writer.write_int_value("deletionGracePeriodInDays", self.deletion_grace_period_in_days) - - diff --git a/msgraph_beta/generated/models/identity_governance/identity_lifecycle.py b/msgraph_beta/generated/models/identity_governance/identity_lifecycle.py deleted file mode 100644 index 11deef69c32..00000000000 --- a/msgraph_beta/generated/models/identity_governance/identity_lifecycle.py +++ /dev/null @@ -1,84 +0,0 @@ -from __future__ import annotations -import datetime -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter -from typing import Any, Optional, TYPE_CHECKING, Union - -if TYPE_CHECKING: - from ..entity import Entity - from .agent_identity_lifecycle import AgentIdentityLifecycle - from .compliance_issue import ComplianceIssue - from .lifecycle_policy import LifecyclePolicy - -from ..entity import Entity - -@dataclass -class IdentityLifecycle(Entity, Parsable): - # The complianceIssues property - compliance_issues: Optional[list[ComplianceIssue]] = None - # The effectiveGoverningPolicy property - effective_governing_policy: Optional[LifecyclePolicy] = None - # The lastAttestationDateTime property - last_attestation_date_time: Optional[datetime.datetime] = None - # The OdataType property - odata_type: Optional[str] = None - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> IdentityLifecycle: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: IdentityLifecycle - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - try: - child_node = parse_node.get_child_node("@odata.type") - mapping_value = child_node.get_str_value() if child_node else None - except AttributeError: - mapping_value = None - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.agentIdentityLifecycle".casefold(): - from .agent_identity_lifecycle import AgentIdentityLifecycle - - return AgentIdentityLifecycle() - return IdentityLifecycle() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - from ..entity import Entity - from .agent_identity_lifecycle import AgentIdentityLifecycle - from .compliance_issue import ComplianceIssue - from .lifecycle_policy import LifecyclePolicy - - from ..entity import Entity - from .agent_identity_lifecycle import AgentIdentityLifecycle - from .compliance_issue import ComplianceIssue - from .lifecycle_policy import LifecyclePolicy - - fields: dict[str, Callable[[Any], None]] = { - "complianceIssues": lambda n : setattr(self, 'compliance_issues', n.get_collection_of_object_values(ComplianceIssue)), - "effectiveGoverningPolicy": lambda n : setattr(self, 'effective_governing_policy', n.get_object_value(LifecyclePolicy)), - "lastAttestationDateTime": lambda n : setattr(self, 'last_attestation_date_time', n.get_datetime_value()), - } - super_fields = super().get_field_deserializers() - fields.update(super_fields) - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - super().serialize(writer) - writer.write_collection_of_object_values("complianceIssues", self.compliance_issues) - writer.write_object_value("effectiveGoverningPolicy", self.effective_governing_policy) - writer.write_datetime_value("lastAttestationDateTime", self.last_attestation_date_time) - - diff --git a/msgraph_beta/generated/models/identity_governance/inactivity_rule.py b/msgraph_beta/generated/models/identity_governance/inactivity_rule.py deleted file mode 100644 index 474695a4c2d..00000000000 --- a/msgraph_beta/generated/models/identity_governance/inactivity_rule.py +++ /dev/null @@ -1,57 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter -from typing import Any, Optional, TYPE_CHECKING, Union - -if TYPE_CHECKING: - from .lifecycle_policy_rule import LifecyclePolicyRule - -from .lifecycle_policy_rule import LifecyclePolicyRule - -@dataclass -class InactivityRule(LifecyclePolicyRule, Parsable): - # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.inactivityRule" - # The lastActivityThresholdInDays property - last_activity_threshold_in_days: Optional[int] = None - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> InactivityRule: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: InactivityRule - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - return InactivityRule() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - from .lifecycle_policy_rule import LifecyclePolicyRule - - from .lifecycle_policy_rule import LifecyclePolicyRule - - fields: dict[str, Callable[[Any], None]] = { - "lastActivityThresholdInDays": lambda n : setattr(self, 'last_activity_threshold_in_days', n.get_int_value()), - } - super_fields = super().get_field_deserializers() - fields.update(super_fields) - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - super().serialize(writer) - writer.write_int_value("lastActivityThresholdInDays", self.last_activity_threshold_in_days) - - diff --git a/msgraph_beta/generated/models/identity_governance/lifecycle_policy.py b/msgraph_beta/generated/models/identity_governance/lifecycle_policy.py deleted file mode 100644 index d5cc2dab28c..00000000000 --- a/msgraph_beta/generated/models/identity_governance/lifecycle_policy.py +++ /dev/null @@ -1,144 +0,0 @@ -from __future__ import annotations -import datetime -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter -from typing import Any, Optional, TYPE_CHECKING, Union - -if TYPE_CHECKING: - from ..directory_object import DirectoryObject - from ..entity import Entity - from ..subject_set import SubjectSet - from .agent_identity_lifecycle_policy import AgentIdentityLifecyclePolicy - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - from .lifecycle_policy_notification_settings import LifecyclePolicyNotificationSettings - from .lifecycle_policy_rule import LifecyclePolicyRule - from .lifecycle_policy_source import LifecyclePolicySource - -from ..entity import Entity - -@dataclass -class LifecyclePolicy(Entity, Parsable): - # The createdBy property - created_by: Optional[DirectoryObject] = None - # The createdDateTime property - created_date_time: Optional[datetime.datetime] = None - # The description property - description: Optional[str] = None - # The displayName property - display_name: Optional[str] = None - # The enforcementAction property - enforcement_action: Optional[LifecyclePolicyEnforcementAction] = None - # The gracePeriodInDays property - grace_period_in_days: Optional[int] = None - # The isEnabled property - is_enabled: Optional[bool] = None - # The lastModifiedBy property - last_modified_by: Optional[DirectoryObject] = None - # The lastModifiedDateTime property - last_modified_date_time: Optional[datetime.datetime] = None - # The notificationSchedule property - notification_schedule: Optional[LifecyclePolicyNotificationSettings] = None - # The OdataType property - odata_type: Optional[str] = None - # The policySource property - policy_source: Optional[LifecyclePolicySource] = None - # The rules property - rules: Optional[list[LifecyclePolicyRule]] = None - # The scope property - scope: Optional[SubjectSet] = None - # The versionNumber property - version_number: Optional[int] = None - # The versions property - versions: Optional[list[LifecyclePolicy]] = None - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> LifecyclePolicy: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: LifecyclePolicy - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - try: - child_node = parse_node.get_child_node("@odata.type") - mapping_value = child_node.get_str_value() if child_node else None - except AttributeError: - mapping_value = None - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.agentIdentityLifecyclePolicy".casefold(): - from .agent_identity_lifecycle_policy import AgentIdentityLifecyclePolicy - - return AgentIdentityLifecyclePolicy() - return LifecyclePolicy() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - from ..directory_object import DirectoryObject - from ..entity import Entity - from ..subject_set import SubjectSet - from .agent_identity_lifecycle_policy import AgentIdentityLifecyclePolicy - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - from .lifecycle_policy_notification_settings import LifecyclePolicyNotificationSettings - from .lifecycle_policy_rule import LifecyclePolicyRule - from .lifecycle_policy_source import LifecyclePolicySource - - from ..directory_object import DirectoryObject - from ..entity import Entity - from ..subject_set import SubjectSet - from .agent_identity_lifecycle_policy import AgentIdentityLifecyclePolicy - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction - from .lifecycle_policy_notification_settings import LifecyclePolicyNotificationSettings - from .lifecycle_policy_rule import LifecyclePolicyRule - from .lifecycle_policy_source import LifecyclePolicySource - - fields: dict[str, Callable[[Any], None]] = { - "createdBy": lambda n : setattr(self, 'created_by', n.get_object_value(DirectoryObject)), - "createdDateTime": lambda n : setattr(self, 'created_date_time', n.get_datetime_value()), - "description": lambda n : setattr(self, 'description', n.get_str_value()), - "displayName": lambda n : setattr(self, 'display_name', n.get_str_value()), - "enforcementAction": lambda n : setattr(self, 'enforcement_action', n.get_object_value(LifecyclePolicyEnforcementAction)), - "gracePeriodInDays": lambda n : setattr(self, 'grace_period_in_days', n.get_int_value()), - "isEnabled": lambda n : setattr(self, 'is_enabled', n.get_bool_value()), - "lastModifiedBy": lambda n : setattr(self, 'last_modified_by', n.get_object_value(DirectoryObject)), - "lastModifiedDateTime": lambda n : setattr(self, 'last_modified_date_time', n.get_datetime_value()), - "notificationSchedule": lambda n : setattr(self, 'notification_schedule', n.get_object_value(LifecyclePolicyNotificationSettings)), - "policySource": lambda n : setattr(self, 'policy_source', n.get_enum_value(LifecyclePolicySource)), - "rules": lambda n : setattr(self, 'rules', n.get_collection_of_object_values(LifecyclePolicyRule)), - "scope": lambda n : setattr(self, 'scope', n.get_object_value(SubjectSet)), - "versionNumber": lambda n : setattr(self, 'version_number', n.get_int_value()), - "versions": lambda n : setattr(self, 'versions', n.get_collection_of_object_values(LifecyclePolicy)), - } - super_fields = super().get_field_deserializers() - fields.update(super_fields) - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - super().serialize(writer) - writer.write_object_value("createdBy", self.created_by) - writer.write_datetime_value("createdDateTime", self.created_date_time) - writer.write_str_value("description", self.description) - writer.write_str_value("displayName", self.display_name) - writer.write_object_value("enforcementAction", self.enforcement_action) - writer.write_int_value("gracePeriodInDays", self.grace_period_in_days) - writer.write_bool_value("isEnabled", self.is_enabled) - writer.write_object_value("lastModifiedBy", self.last_modified_by) - writer.write_datetime_value("lastModifiedDateTime", self.last_modified_date_time) - writer.write_object_value("notificationSchedule", self.notification_schedule) - writer.write_enum_value("policySource", self.policy_source) - writer.write_collection_of_object_values("rules", self.rules) - writer.write_object_value("scope", self.scope) - writer.write_int_value("versionNumber", self.version_number) - writer.write_collection_of_object_values("versions", self.versions) - - diff --git a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_rule.py b/msgraph_beta/generated/models/identity_governance/lifecycle_policy_rule.py deleted file mode 100644 index ad774cdb428..00000000000 --- a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_rule.py +++ /dev/null @@ -1,83 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter -from typing import Any, Optional, TYPE_CHECKING, Union - -if TYPE_CHECKING: - from ..entity import Entity - from .inactivity_rule import InactivityRule - from .periodic_attestation_rule import PeriodicAttestationRule - from .sponsor_presence_rule import SponsorPresenceRule - -from ..entity import Entity - -@dataclass -class LifecyclePolicyRule(Entity, Parsable): - # The isEnabled property - is_enabled: Optional[bool] = None - # The OdataType property - odata_type: Optional[str] = None - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> LifecyclePolicyRule: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: LifecyclePolicyRule - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - try: - child_node = parse_node.get_child_node("@odata.type") - mapping_value = child_node.get_str_value() if child_node else None - except AttributeError: - mapping_value = None - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.inactivityRule".casefold(): - from .inactivity_rule import InactivityRule - - return InactivityRule() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.periodicAttestationRule".casefold(): - from .periodic_attestation_rule import PeriodicAttestationRule - - return PeriodicAttestationRule() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.sponsorPresenceRule".casefold(): - from .sponsor_presence_rule import SponsorPresenceRule - - return SponsorPresenceRule() - return LifecyclePolicyRule() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - from ..entity import Entity - from .inactivity_rule import InactivityRule - from .periodic_attestation_rule import PeriodicAttestationRule - from .sponsor_presence_rule import SponsorPresenceRule - - from ..entity import Entity - from .inactivity_rule import InactivityRule - from .periodic_attestation_rule import PeriodicAttestationRule - from .sponsor_presence_rule import SponsorPresenceRule - - fields: dict[str, Callable[[Any], None]] = { - "isEnabled": lambda n : setattr(self, 'is_enabled', n.get_bool_value()), - } - super_fields = super().get_field_deserializers() - fields.update(super_fields) - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - super().serialize(writer) - writer.write_bool_value("isEnabled", self.is_enabled) - - diff --git a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_source.py b/msgraph_beta/generated/models/identity_governance/lifecycle_policy_source.py deleted file mode 100644 index 9360918e573..00000000000 --- a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_source.py +++ /dev/null @@ -1,7 +0,0 @@ -from enum import Enum - -class LifecyclePolicySource(str, Enum): - UserCreated = "userCreated", - SystemDefault = "systemDefault", - UnknownFutureValue = "unknownFutureValue", - diff --git a/msgraph_beta/generated/models/identity_governance/lifecycle_workflows_container.py b/msgraph_beta/generated/models/identity_governance/lifecycle_workflows_container.py index ac3005bdd30..b428d73e56b 100644 --- a/msgraph_beta/generated/models/identity_governance/lifecycle_workflows_container.py +++ b/msgraph_beta/generated/models/identity_governance/lifecycle_workflows_container.py @@ -10,8 +10,6 @@ from .custom_task_extension import CustomTaskExtension from .insights import Insights from .lifecycle_management_settings import LifecycleManagementSettings - from .lifecycle_policy import LifecyclePolicy - from .lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration from .task_definition import TaskDefinition from .workflow import Workflow from .workflow_template import WorkflowTemplate @@ -26,10 +24,6 @@ class LifecycleWorkflowsContainer(Entity, Parsable): deleted_items: Optional[DeletedItemContainer] = None # The insight container holding workflow insight summaries for a tenant. insights: Optional[Insights] = None - # The lifecyclePolicies property - lifecycle_policies: Optional[list[LifecyclePolicy]] = None - # The lifecyclePolicyPriorityConfigurations property - lifecycle_policy_priority_configurations: Optional[list[LifecyclePolicyPriorityConfiguration]] = None # The OdataType property odata_type: Optional[str] = None # The settings property @@ -62,8 +56,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .custom_task_extension import CustomTaskExtension from .insights import Insights from .lifecycle_management_settings import LifecycleManagementSettings - from .lifecycle_policy import LifecyclePolicy - from .lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration from .task_definition import TaskDefinition from .workflow import Workflow from .workflow_template import WorkflowTemplate @@ -73,8 +65,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .custom_task_extension import CustomTaskExtension from .insights import Insights from .lifecycle_management_settings import LifecycleManagementSettings - from .lifecycle_policy import LifecyclePolicy - from .lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration from .task_definition import TaskDefinition from .workflow import Workflow from .workflow_template import WorkflowTemplate @@ -83,8 +73,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "customTaskExtensions": lambda n : setattr(self, 'custom_task_extensions', n.get_collection_of_object_values(CustomTaskExtension)), "deletedItems": lambda n : setattr(self, 'deleted_items', n.get_object_value(DeletedItemContainer)), "insights": lambda n : setattr(self, 'insights', n.get_object_value(Insights)), - "lifecyclePolicies": lambda n : setattr(self, 'lifecycle_policies', n.get_collection_of_object_values(LifecyclePolicy)), - "lifecyclePolicyPriorityConfigurations": lambda n : setattr(self, 'lifecycle_policy_priority_configurations', n.get_collection_of_object_values(LifecyclePolicyPriorityConfiguration)), "settings": lambda n : setattr(self, 'settings', n.get_object_value(LifecycleManagementSettings)), "taskDefinitions": lambda n : setattr(self, 'task_definitions', n.get_collection_of_object_values(TaskDefinition)), "workflowTemplates": lambda n : setattr(self, 'workflow_templates', n.get_collection_of_object_values(WorkflowTemplate)), @@ -106,8 +94,6 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_collection_of_object_values("customTaskExtensions", self.custom_task_extensions) writer.write_object_value("deletedItems", self.deleted_items) writer.write_object_value("insights", self.insights) - writer.write_collection_of_object_values("lifecyclePolicies", self.lifecycle_policies) - writer.write_collection_of_object_values("lifecyclePolicyPriorityConfigurations", self.lifecycle_policy_priority_configurations) writer.write_object_value("settings", self.settings) writer.write_collection_of_object_values("taskDefinitions", self.task_definitions) writer.write_collection_of_object_values("workflowTemplates", self.workflow_templates) diff --git a/msgraph_beta/generated/models/identity_governance/operator_between.py b/msgraph_beta/generated/models/identity_governance/operator_between.py new file mode 100644 index 00000000000..79f9409f467 --- /dev/null +++ b/msgraph_beta/generated/models/identity_governance/operator_between.py @@ -0,0 +1,61 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator + +from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator + +@dataclass +class OperatorBetween(WorkflowTriggerTimeBasedOperator, Parsable): + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.identityGovernance.operatorBetween" + # The exclusive lower bound of the date range, in days. The value must be a nonnegative integer and less than lessThanOffsetInDays. + greater_than_offset_in_days: Optional[int] = None + # The exclusive upper bound of the date range, in days. The value must be a nonnegative integer and greater than greaterThanOffsetInDays. The difference between the upper and lower bounds can't exceed 180 days. + less_than_offset_in_days: Optional[int] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> OperatorBetween: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: OperatorBetween + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return OperatorBetween() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator + + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator + + fields: dict[str, Callable[[Any], None]] = { + "greaterThanOffsetInDays": lambda n : setattr(self, 'greater_than_offset_in_days', n.get_int_value()), + "lessThanOffsetInDays": lambda n : setattr(self, 'less_than_offset_in_days', n.get_int_value()), + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + writer.write_int_value("greaterThanOffsetInDays", self.greater_than_offset_in_days) + writer.write_int_value("lessThanOffsetInDays", self.less_than_offset_in_days) + + diff --git a/msgraph_beta/generated/models/identity_governance/all_excluding_groups_subject_set.py b/msgraph_beta/generated/models/identity_governance/operator_equal_to.py similarity index 64% rename from msgraph_beta/generated/models/identity_governance/all_excluding_groups_subject_set.py rename to msgraph_beta/generated/models/identity_governance/operator_equal_to.py index 204f1e907f0..ce32f226832 100644 --- a/msgraph_beta/generated/models/identity_governance/all_excluding_groups_subject_set.py +++ b/msgraph_beta/generated/models/identity_governance/operator_equal_to.py @@ -5,42 +5,39 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from ..group import Group - from ..subject_set import SubjectSet + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator -from ..subject_set import SubjectSet +from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator @dataclass -class AllExcludingGroupsSubjectSet(SubjectSet, Parsable): +class OperatorEqualTo(WorkflowTriggerTimeBasedOperator, Parsable): # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.allExcludingGroupsSubjectSet" - # The excludedGroups property - excluded_groups: Optional[list[Group]] = None + odata_type: Optional[str] = "#microsoft.graph.identityGovernance.operatorEqualTo" + # The exact number of days between the current date and the date in the user attribute. The value must be a nonnegative integer. + offset_in_days: Optional[int] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AllExcludingGroupsSubjectSet: + def create_from_discriminator_value(parse_node: ParseNode) -> OperatorEqualTo: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AllExcludingGroupsSubjectSet + Returns: OperatorEqualTo """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AllExcludingGroupsSubjectSet() + return OperatorEqualTo() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from ..group import Group - from ..subject_set import SubjectSet + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator - from ..group import Group - from ..subject_set import SubjectSet + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator fields: dict[str, Callable[[Any], None]] = { - "excludedGroups": lambda n : setattr(self, 'excluded_groups', n.get_collection_of_object_values(Group)), + "offsetInDays": lambda n : setattr(self, 'offset_in_days', n.get_int_value()), } super_fields = super().get_field_deserializers() fields.update(super_fields) @@ -55,6 +52,6 @@ def serialize(self,writer: SerializationWriter) -> None: if writer is None: raise TypeError("writer cannot be null.") super().serialize(writer) - writer.write_collection_of_object_values("excludedGroups", self.excluded_groups) + writer.write_int_value("offsetInDays", self.offset_in_days) diff --git a/msgraph_beta/generated/models/identity_governance/delete_only_enforcement_action.py b/msgraph_beta/generated/models/identity_governance/operator_less_than_equal_to.py similarity index 62% rename from msgraph_beta/generated/models/identity_governance/delete_only_enforcement_action.py rename to msgraph_beta/generated/models/identity_governance/operator_less_than_equal_to.py index d9ab3202bcd..c5115b8df03 100644 --- a/msgraph_beta/generated/models/identity_governance/delete_only_enforcement_action.py +++ b/msgraph_beta/generated/models/identity_governance/operator_less_than_equal_to.py @@ -5,36 +5,39 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator -from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction +from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator @dataclass -class DeleteOnlyEnforcementAction(LifecyclePolicyEnforcementAction, Parsable): +class OperatorLessThanEqualTo(WorkflowTriggerTimeBasedOperator, Parsable): # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.deleteOnlyEnforcementAction" + odata_type: Optional[str] = "#microsoft.graph.identityGovernance.operatorLessThanEqualTo" + # The maximum number of days between the current date and the date in the user attribute. The value must be a nonnegative integer. + offset_in_days: Optional[int] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> DeleteOnlyEnforcementAction: + def create_from_discriminator_value(parse_node: ParseNode) -> OperatorLessThanEqualTo: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: DeleteOnlyEnforcementAction + Returns: OperatorLessThanEqualTo """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return DeleteOnlyEnforcementAction() + return OperatorLessThanEqualTo() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator - from .lifecycle_policy_enforcement_action import LifecyclePolicyEnforcementAction + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator fields: dict[str, Callable[[Any], None]] = { + "offsetInDays": lambda n : setattr(self, 'offset_in_days', n.get_int_value()), } super_fields = super().get_field_deserializers() fields.update(super_fields) @@ -49,5 +52,6 @@ def serialize(self,writer: SerializationWriter) -> None: if writer is None: raise TypeError("writer cannot be null.") super().serialize(writer) + writer.write_int_value("offsetInDays", self.offset_in_days) diff --git a/msgraph_beta/generated/models/identity_governance/periodic_attestation_rule.py b/msgraph_beta/generated/models/identity_governance/periodic_attestation_rule.py deleted file mode 100644 index fb6ec20630e..00000000000 --- a/msgraph_beta/generated/models/identity_governance/periodic_attestation_rule.py +++ /dev/null @@ -1,57 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter -from typing import Any, Optional, TYPE_CHECKING, Union - -if TYPE_CHECKING: - from .lifecycle_policy_rule import LifecyclePolicyRule - -from .lifecycle_policy_rule import LifecyclePolicyRule - -@dataclass -class PeriodicAttestationRule(LifecyclePolicyRule, Parsable): - # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.periodicAttestationRule" - # The attestationIntervalInDays property - attestation_interval_in_days: Optional[int] = None - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> PeriodicAttestationRule: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: PeriodicAttestationRule - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - return PeriodicAttestationRule() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - from .lifecycle_policy_rule import LifecyclePolicyRule - - from .lifecycle_policy_rule import LifecyclePolicyRule - - fields: dict[str, Callable[[Any], None]] = { - "attestationIntervalInDays": lambda n : setattr(self, 'attestation_interval_in_days', n.get_int_value()), - } - super_fields = super().get_field_deserializers() - fields.update(super_fields) - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - super().serialize(writer) - writer.write_int_value("attestationIntervalInDays", self.attestation_interval_in_days) - - diff --git a/msgraph_beta/generated/models/identity_governance/selected_objects_subject_set.py b/msgraph_beta/generated/models/identity_governance/selected_objects_subject_set.py deleted file mode 100644 index 1c9ef05fb93..00000000000 --- a/msgraph_beta/generated/models/identity_governance/selected_objects_subject_set.py +++ /dev/null @@ -1,60 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter -from typing import Any, Optional, TYPE_CHECKING, Union - -if TYPE_CHECKING: - from ..directory_object import DirectoryObject - from ..subject_set import SubjectSet - -from ..subject_set import SubjectSet - -@dataclass -class SelectedObjectsSubjectSet(SubjectSet, Parsable): - # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.selectedObjectsSubjectSet" - # The inScopeObjects property - in_scope_objects: Optional[list[DirectoryObject]] = None - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> SelectedObjectsSubjectSet: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: SelectedObjectsSubjectSet - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - return SelectedObjectsSubjectSet() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - from ..directory_object import DirectoryObject - from ..subject_set import SubjectSet - - from ..directory_object import DirectoryObject - from ..subject_set import SubjectSet - - fields: dict[str, Callable[[Any], None]] = { - "inScopeObjects": lambda n : setattr(self, 'in_scope_objects', n.get_collection_of_object_values(DirectoryObject)), - } - super_fields = super().get_field_deserializers() - fields.update(super_fields) - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - super().serialize(writer) - writer.write_collection_of_object_values("inScopeObjects", self.in_scope_objects) - - diff --git a/msgraph_beta/generated/models/identity_governance/sponsor_presence_rule.py b/msgraph_beta/generated/models/identity_governance/sponsor_presence_rule.py deleted file mode 100644 index ab06b45b135..00000000000 --- a/msgraph_beta/generated/models/identity_governance/sponsor_presence_rule.py +++ /dev/null @@ -1,57 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter -from typing import Any, Optional, TYPE_CHECKING, Union - -if TYPE_CHECKING: - from .lifecycle_policy_rule import LifecyclePolicyRule - -from .lifecycle_policy_rule import LifecyclePolicyRule - -@dataclass -class SponsorPresenceRule(LifecyclePolicyRule, Parsable): - # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.sponsorPresenceRule" - # The minimumSponsorCount property - minimum_sponsor_count: Optional[int] = None - - @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> SponsorPresenceRule: - """ - Creates a new instance of the appropriate class based on discriminator value - param parse_node: The parse node to use to read the discriminator value and create the object - Returns: SponsorPresenceRule - """ - if parse_node is None: - raise TypeError("parse_node cannot be null.") - return SponsorPresenceRule() - - def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: - """ - The deserialization information for the current model - Returns: dict[str, Callable[[ParseNode], None]] - """ - from .lifecycle_policy_rule import LifecyclePolicyRule - - from .lifecycle_policy_rule import LifecyclePolicyRule - - fields: dict[str, Callable[[Any], None]] = { - "minimumSponsorCount": lambda n : setattr(self, 'minimum_sponsor_count', n.get_int_value()), - } - super_fields = super().get_field_deserializers() - fields.update(super_fields) - return fields - - def serialize(self,writer: SerializationWriter) -> None: - """ - Serializes information the current object - param writer: Serialization writer to use to serialize this model - Returns: None - """ - if writer is None: - raise TypeError("writer cannot be null.") - super().serialize(writer) - writer.write_int_value("minimumSponsorCount", self.minimum_sponsor_count) - - diff --git a/msgraph_beta/generated/models/identity_governance/all_excluding_specific_objects_subject_set.py b/msgraph_beta/generated/models/identity_governance/time_based_attribute_trigger_v2.py similarity index 53% rename from msgraph_beta/generated/models/identity_governance/all_excluding_specific_objects_subject_set.py rename to msgraph_beta/generated/models/identity_governance/time_based_attribute_trigger_v2.py index 4dd3bcbd7d5..625e776b973 100644 --- a/msgraph_beta/generated/models/identity_governance/all_excluding_specific_objects_subject_set.py +++ b/msgraph_beta/generated/models/identity_governance/time_based_attribute_trigger_v2.py @@ -5,42 +5,45 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from ..directory_object import DirectoryObject - from ..subject_set import SubjectSet + from .workflow_execution_trigger import WorkflowExecutionTrigger + from .workflow_execution_trigger_operator import WorkflowExecutionTriggerOperator -from ..subject_set import SubjectSet +from .workflow_execution_trigger import WorkflowExecutionTrigger @dataclass -class AllExcludingSpecificObjectsSubjectSet(SubjectSet, Parsable): +class TimeBasedAttributeTriggerV2(WorkflowExecutionTrigger, Parsable): # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.identityGovernance.allExcludingSpecificObjectsSubjectSet" - # The excludedObjects property - excluded_objects: Optional[list[DirectoryObject]] = None + odata_type: Optional[str] = "#microsoft.graph.identityGovernance.timeBasedAttributeTriggerV2" + # The name of the date-type user attribute to evaluate, such as employeeHireDate or employeeLeaveDateTime. + attribute: Optional[str] = None + # The operator property + operator: Optional[WorkflowExecutionTriggerOperator] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AllExcludingSpecificObjectsSubjectSet: + def create_from_discriminator_value(parse_node: ParseNode) -> TimeBasedAttributeTriggerV2: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AllExcludingSpecificObjectsSubjectSet + Returns: TimeBasedAttributeTriggerV2 """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AllExcludingSpecificObjectsSubjectSet() + return TimeBasedAttributeTriggerV2() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from ..directory_object import DirectoryObject - from ..subject_set import SubjectSet + from .workflow_execution_trigger import WorkflowExecutionTrigger + from .workflow_execution_trigger_operator import WorkflowExecutionTriggerOperator - from ..directory_object import DirectoryObject - from ..subject_set import SubjectSet + from .workflow_execution_trigger import WorkflowExecutionTrigger + from .workflow_execution_trigger_operator import WorkflowExecutionTriggerOperator fields: dict[str, Callable[[Any], None]] = { - "excludedObjects": lambda n : setattr(self, 'excluded_objects', n.get_collection_of_object_values(DirectoryObject)), + "attribute": lambda n : setattr(self, 'attribute', n.get_str_value()), + "operator": lambda n : setattr(self, 'operator', n.get_object_value(WorkflowExecutionTriggerOperator)), } super_fields = super().get_field_deserializers() fields.update(super_fields) @@ -55,6 +58,7 @@ def serialize(self,writer: SerializationWriter) -> None: if writer is None: raise TypeError("writer cannot be null.") super().serialize(writer) - writer.write_collection_of_object_values("excludedObjects", self.excluded_objects) + writer.write_str_value("attribute", self.attribute) + writer.write_object_value("operator", self.operator) diff --git a/msgraph_beta/generated/models/identity_governance/workflow_execution_trigger.py b/msgraph_beta/generated/models/identity_governance/workflow_execution_trigger.py index 216f06ea8fa..9250548cbba 100644 --- a/msgraph_beta/generated/models/identity_governance/workflow_execution_trigger.py +++ b/msgraph_beta/generated/models/identity_governance/workflow_execution_trigger.py @@ -10,6 +10,7 @@ from .guest_sponsor_trigger import GuestSponsorTrigger from .membership_change_trigger import MembershipChangeTrigger from .time_based_attribute_trigger import TimeBasedAttributeTrigger + from .time_based_attribute_trigger_v2 import TimeBasedAttributeTriggerV2 from .user_inactivity_trigger import UserInactivityTrigger @dataclass @@ -52,6 +53,10 @@ def create_from_discriminator_value(parse_node: ParseNode) -> WorkflowExecutionT from .time_based_attribute_trigger import TimeBasedAttributeTrigger return TimeBasedAttributeTrigger() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.timeBasedAttributeTriggerV2".casefold(): + from .time_based_attribute_trigger_v2 import TimeBasedAttributeTriggerV2 + + return TimeBasedAttributeTriggerV2() if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.userInactivityTrigger".casefold(): from .user_inactivity_trigger import UserInactivityTrigger @@ -67,12 +72,14 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .guest_sponsor_trigger import GuestSponsorTrigger from .membership_change_trigger import MembershipChangeTrigger from .time_based_attribute_trigger import TimeBasedAttributeTrigger + from .time_based_attribute_trigger_v2 import TimeBasedAttributeTriggerV2 from .user_inactivity_trigger import UserInactivityTrigger from .attribute_change_trigger import AttributeChangeTrigger from .guest_sponsor_trigger import GuestSponsorTrigger from .membership_change_trigger import MembershipChangeTrigger from .time_based_attribute_trigger import TimeBasedAttributeTrigger + from .time_based_attribute_trigger_v2 import TimeBasedAttributeTriggerV2 from .user_inactivity_trigger import UserInactivityTrigger fields: dict[str, Callable[[Any], None]] = { diff --git a/msgraph_beta/generated/models/identity_governance/workflow_execution_trigger_operator.py b/msgraph_beta/generated/models/identity_governance/workflow_execution_trigger_operator.py new file mode 100644 index 00000000000..126c0859c74 --- /dev/null +++ b/msgraph_beta/generated/models/identity_governance/workflow_execution_trigger_operator.py @@ -0,0 +1,87 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter +from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .operator_between import OperatorBetween + from .operator_equal_to import OperatorEqualTo + from .operator_less_than_equal_to import OperatorLessThanEqualTo + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator + +@dataclass +class WorkflowExecutionTriggerOperator(AdditionalDataHolder, BackedModel, Parsable): + # Stores model information. + backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) + + # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + additional_data: dict[str, Any] = field(default_factory=dict) + # The OdataType property + odata_type: Optional[str] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> WorkflowExecutionTriggerOperator: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: WorkflowExecutionTriggerOperator + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + try: + child_node = parse_node.get_child_node("@odata.type") + mapping_value = child_node.get_str_value() if child_node else None + except AttributeError: + mapping_value = None + if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.operatorBetween".casefold(): + from .operator_between import OperatorBetween + + return OperatorBetween() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.operatorEqualTo".casefold(): + from .operator_equal_to import OperatorEqualTo + + return OperatorEqualTo() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.operatorLessThanEqualTo".casefold(): + from .operator_less_than_equal_to import OperatorLessThanEqualTo + + return OperatorLessThanEqualTo() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.workflowTriggerTimeBasedOperator".casefold(): + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator + + return WorkflowTriggerTimeBasedOperator() + return WorkflowExecutionTriggerOperator() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .operator_between import OperatorBetween + from .operator_equal_to import OperatorEqualTo + from .operator_less_than_equal_to import OperatorLessThanEqualTo + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator + + from .operator_between import OperatorBetween + from .operator_equal_to import OperatorEqualTo + from .operator_less_than_equal_to import OperatorLessThanEqualTo + from .workflow_trigger_time_based_operator import WorkflowTriggerTimeBasedOperator + + fields: dict[str, Callable[[Any], None]] = { + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), + } + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + writer.write_str_value("@odata.type", self.odata_type) + writer.write_additional_data_value(self.additional_data) + + diff --git a/msgraph_beta/generated/models/identity_governance/workflow_trigger_operator_event_timing.py b/msgraph_beta/generated/models/identity_governance/workflow_trigger_operator_event_timing.py new file mode 100644 index 00000000000..57e7e92e876 --- /dev/null +++ b/msgraph_beta/generated/models/identity_governance/workflow_trigger_operator_event_timing.py @@ -0,0 +1,8 @@ +from enum import Enum + +class WorkflowTriggerOperatorEventTiming(str, Enum): + Before = "before", + After = "after", + On = "on", + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/identity_governance/workflow_trigger_time_based_operator.py b/msgraph_beta/generated/models/identity_governance/workflow_trigger_time_based_operator.py new file mode 100644 index 00000000000..aef6577247f --- /dev/null +++ b/msgraph_beta/generated/models/identity_governance/workflow_trigger_time_based_operator.py @@ -0,0 +1,86 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .operator_between import OperatorBetween + from .operator_equal_to import OperatorEqualTo + from .operator_less_than_equal_to import OperatorLessThanEqualTo + from .workflow_execution_trigger_operator import WorkflowExecutionTriggerOperator + from .workflow_trigger_operator_event_timing import WorkflowTriggerOperatorEventTiming + +from .workflow_execution_trigger_operator import WorkflowExecutionTriggerOperator + +@dataclass +class WorkflowTriggerTimeBasedOperator(WorkflowExecutionTriggerOperator, Parsable): + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.identityGovernance.workflowTriggerTimeBasedOperator" + # The eventTiming property + event_timing: Optional[WorkflowTriggerOperatorEventTiming] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> WorkflowTriggerTimeBasedOperator: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: WorkflowTriggerTimeBasedOperator + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + try: + child_node = parse_node.get_child_node("@odata.type") + mapping_value = child_node.get_str_value() if child_node else None + except AttributeError: + mapping_value = None + if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.operatorBetween".casefold(): + from .operator_between import OperatorBetween + + return OperatorBetween() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.operatorEqualTo".casefold(): + from .operator_equal_to import OperatorEqualTo + + return OperatorEqualTo() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.operatorLessThanEqualTo".casefold(): + from .operator_less_than_equal_to import OperatorLessThanEqualTo + + return OperatorLessThanEqualTo() + return WorkflowTriggerTimeBasedOperator() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .operator_between import OperatorBetween + from .operator_equal_to import OperatorEqualTo + from .operator_less_than_equal_to import OperatorLessThanEqualTo + from .workflow_execution_trigger_operator import WorkflowExecutionTriggerOperator + from .workflow_trigger_operator_event_timing import WorkflowTriggerOperatorEventTiming + + from .operator_between import OperatorBetween + from .operator_equal_to import OperatorEqualTo + from .operator_less_than_equal_to import OperatorLessThanEqualTo + from .workflow_execution_trigger_operator import WorkflowExecutionTriggerOperator + from .workflow_trigger_operator_event_timing import WorkflowTriggerOperatorEventTiming + + fields: dict[str, Callable[[Any], None]] = { + "eventTiming": lambda n : setattr(self, 'event_timing', n.get_enum_value(WorkflowTriggerOperatorEventTiming)), + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + writer.write_enum_value("eventTiming", self.event_timing) + + diff --git a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_enforcement_action.py b/msgraph_beta/generated/models/interaction_participant.py similarity index 60% rename from msgraph_beta/generated/models/identity_governance/lifecycle_policy_enforcement_action.py rename to msgraph_beta/generated/models/interaction_participant.py index 7375eaeb53d..6ea29dc91eb 100644 --- a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_enforcement_action.py +++ b/msgraph_beta/generated/models/interaction_participant.py @@ -6,12 +6,12 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from .delete_only_enforcement_action import DeleteOnlyEnforcementAction - from .disable_only_enforcement_action import DisableOnlyEnforcementAction - from .disable_then_delete_enforcement_action import DisableThenDeleteEnforcementAction + from .agent_participant import AgentParticipant + from .tool_participant import ToolParticipant + from .user_participant import UserParticipant @dataclass -class LifecyclePolicyEnforcementAction(AdditionalDataHolder, BackedModel, Parsable): +class InteractionParticipant(AdditionalDataHolder, BackedModel, Parsable): # Stores model information. backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) @@ -19,13 +19,15 @@ class LifecyclePolicyEnforcementAction(AdditionalDataHolder, BackedModel, Parsab additional_data: dict[str, Any] = field(default_factory=dict) # The OdataType property odata_type: Optional[str] = None + # The value property + value: Optional[str] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> LifecyclePolicyEnforcementAction: + def create_from_discriminator_value(parse_node: ParseNode) -> InteractionParticipant: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: LifecyclePolicyEnforcementAction + Returns: InteractionParticipant """ if parse_node is None: raise TypeError("parse_node cannot be null.") @@ -34,35 +36,36 @@ def create_from_discriminator_value(parse_node: ParseNode) -> LifecyclePolicyEnf mapping_value = child_node.get_str_value() if child_node else None except AttributeError: mapping_value = None - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.deleteOnlyEnforcementAction".casefold(): - from .delete_only_enforcement_action import DeleteOnlyEnforcementAction + if mapping_value and mapping_value.casefold() == "#microsoft.graph.agentParticipant".casefold(): + from .agent_participant import AgentParticipant - return DeleteOnlyEnforcementAction() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.disableOnlyEnforcementAction".casefold(): - from .disable_only_enforcement_action import DisableOnlyEnforcementAction + return AgentParticipant() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.toolParticipant".casefold(): + from .tool_participant import ToolParticipant - return DisableOnlyEnforcementAction() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.disableThenDeleteEnforcementAction".casefold(): - from .disable_then_delete_enforcement_action import DisableThenDeleteEnforcementAction + return ToolParticipant() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.userParticipant".casefold(): + from .user_participant import UserParticipant - return DisableThenDeleteEnforcementAction() - return LifecyclePolicyEnforcementAction() + return UserParticipant() + return InteractionParticipant() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from .delete_only_enforcement_action import DeleteOnlyEnforcementAction - from .disable_only_enforcement_action import DisableOnlyEnforcementAction - from .disable_then_delete_enforcement_action import DisableThenDeleteEnforcementAction + from .agent_participant import AgentParticipant + from .tool_participant import ToolParticipant + from .user_participant import UserParticipant - from .delete_only_enforcement_action import DeleteOnlyEnforcementAction - from .disable_only_enforcement_action import DisableOnlyEnforcementAction - from .disable_then_delete_enforcement_action import DisableThenDeleteEnforcementAction + from .agent_participant import AgentParticipant + from .tool_participant import ToolParticipant + from .user_participant import UserParticipant fields: dict[str, Callable[[Any], None]] = { "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), + "value": lambda n : setattr(self, 'value', n.get_str_value()), } return fields @@ -75,6 +78,7 @@ def serialize(self,writer: SerializationWriter) -> None: if writer is None: raise TypeError("writer cannot be null.") writer.write_str_value("@odata.type", self.odata_type) + writer.write_str_value("value", self.value) writer.write_additional_data_value(self.additional_data) diff --git a/msgraph_beta/generated/models/policy_location_tool.py b/msgraph_beta/generated/models/local_drift_identity_info.py similarity index 76% rename from msgraph_beta/generated/models/policy_location_tool.py rename to msgraph_beta/generated/models/local_drift_identity_info.py index 9aa3a9bf586..847ec13287f 100644 --- a/msgraph_beta/generated/models/policy_location_tool.py +++ b/msgraph_beta/generated/models/local_drift_identity_info.py @@ -5,34 +5,34 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from .policy_location import PolicyLocation + from .drift_identity_info import DriftIdentityInfo -from .policy_location import PolicyLocation +from .drift_identity_info import DriftIdentityInfo @dataclass -class PolicyLocationTool(PolicyLocation, Parsable): +class LocalDriftIdentityInfo(DriftIdentityInfo, Parsable): # The OdataType property - odata_type: Optional[str] = "#microsoft.graph.policyLocationTool" + odata_type: Optional[str] = "#microsoft.graph.localDriftIdentityInfo" @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> PolicyLocationTool: + def create_from_discriminator_value(parse_node: ParseNode) -> LocalDriftIdentityInfo: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: PolicyLocationTool + Returns: LocalDriftIdentityInfo """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return PolicyLocationTool() + return LocalDriftIdentityInfo() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from .policy_location import PolicyLocation + from .drift_identity_info import DriftIdentityInfo - from .policy_location import PolicyLocation + from .drift_identity_info import DriftIdentityInfo fields: dict[str, Callable[[Any], None]] = { } diff --git a/msgraph_beta/generated/models/m365_capability_base.py b/msgraph_beta/generated/models/m365_capability_base.py index 024898811b6..58cc7829c51 100644 --- a/msgraph_beta/generated/models/m365_capability_base.py +++ b/msgraph_beta/generated/models/m365_capability_base.py @@ -6,6 +6,9 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: + from .anonymous_calendar_sharing_free_busy_detail import AnonymousCalendarSharingFreeBusyDetail + from .anonymous_calendar_sharing_free_busy_reviewer import AnonymousCalendarSharingFreeBusyReviewer + from .anonymous_calendar_sharing_free_busy_simple import AnonymousCalendarSharingFreeBusySimple from .cross_tenant_calendar_availability_basic import CrossTenantCalendarAvailabilityBasic from .cross_tenant_calendar_availability_limited_details import CrossTenantCalendarAvailabilityLimitedDetails from .cross_tenant_calendar_sharing_free_busy_detail import CrossTenantCalendarSharingFreeBusyDetail @@ -47,6 +50,18 @@ def create_from_discriminator_value(parse_node: ParseNode) -> M365CapabilityBase mapping_value = child_node.get_str_value() if child_node else None except AttributeError: mapping_value = None + if mapping_value and mapping_value.casefold() == "#microsoft.graph.anonymousCalendarSharingFreeBusyDetail".casefold(): + from .anonymous_calendar_sharing_free_busy_detail import AnonymousCalendarSharingFreeBusyDetail + + return AnonymousCalendarSharingFreeBusyDetail() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.anonymousCalendarSharingFreeBusyReviewer".casefold(): + from .anonymous_calendar_sharing_free_busy_reviewer import AnonymousCalendarSharingFreeBusyReviewer + + return AnonymousCalendarSharingFreeBusyReviewer() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.anonymousCalendarSharingFreeBusySimple".casefold(): + from .anonymous_calendar_sharing_free_busy_simple import AnonymousCalendarSharingFreeBusySimple + + return AnonymousCalendarSharingFreeBusySimple() if mapping_value and mapping_value.casefold() == "#microsoft.graph.crossTenantCalendarAvailabilityBasic".casefold(): from .cross_tenant_calendar_availability_basic import CrossTenantCalendarAvailabilityBasic @@ -98,6 +113,9 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ + from .anonymous_calendar_sharing_free_busy_detail import AnonymousCalendarSharingFreeBusyDetail + from .anonymous_calendar_sharing_free_busy_reviewer import AnonymousCalendarSharingFreeBusyReviewer + from .anonymous_calendar_sharing_free_busy_simple import AnonymousCalendarSharingFreeBusySimple from .cross_tenant_calendar_availability_basic import CrossTenantCalendarAvailabilityBasic from .cross_tenant_calendar_availability_limited_details import CrossTenantCalendarAvailabilityLimitedDetails from .cross_tenant_calendar_sharing_free_busy_detail import CrossTenantCalendarSharingFreeBusyDetail @@ -112,6 +130,9 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .entity import Entity from .m365_capability_inbound_access import M365CapabilityInboundAccess + from .anonymous_calendar_sharing_free_busy_detail import AnonymousCalendarSharingFreeBusyDetail + from .anonymous_calendar_sharing_free_busy_reviewer import AnonymousCalendarSharingFreeBusyReviewer + from .anonymous_calendar_sharing_free_busy_simple import AnonymousCalendarSharingFreeBusySimple from .cross_tenant_calendar_availability_basic import CrossTenantCalendarAvailabilityBasic from .cross_tenant_calendar_availability_limited_details import CrossTenantCalendarAvailabilityLimitedDetails from .cross_tenant_calendar_sharing_free_busy_detail import CrossTenantCalendarSharingFreeBusyDetail diff --git a/msgraph_beta/generated/models/mobile_app.py b/msgraph_beta/generated/models/mobile_app.py index 4cf96666e7e..0eb52da6add 100644 --- a/msgraph_beta/generated/models/mobile_app.py +++ b/msgraph_beta/generated/models/mobile_app.py @@ -6,6 +6,7 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: + from .android_aosp_referenced_app import AndroidAospReferencedApp from .android_for_work_app import AndroidForWorkApp from .android_lob_app import AndroidLobApp from .android_managed_store_app import AndroidManagedStoreApp @@ -122,6 +123,10 @@ def create_from_discriminator_value(parse_node: ParseNode) -> MobileApp: mapping_value = child_node.get_str_value() if child_node else None except AttributeError: mapping_value = None + if mapping_value and mapping_value.casefold() == "#microsoft.graph.androidAospReferencedApp".casefold(): + from .android_aosp_referenced_app import AndroidAospReferencedApp + + return AndroidAospReferencedApp() if mapping_value and mapping_value.casefold() == "#microsoft.graph.androidForWorkApp".casefold(): from .android_for_work_app import AndroidForWorkApp @@ -293,6 +298,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ + from .android_aosp_referenced_app import AndroidAospReferencedApp from .android_for_work_app import AndroidForWorkApp from .android_lob_app import AndroidLobApp from .android_managed_store_app import AndroidManagedStoreApp @@ -341,6 +347,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .windows_web_app import WindowsWebApp from .win_get_app import WinGetApp + from .android_aosp_referenced_app import AndroidAospReferencedApp from .android_for_work_app import AndroidForWorkApp from .android_lob_app import AndroidLobApp from .android_managed_store_app import AndroidManagedStoreApp diff --git a/msgraph_beta/generated/models/mobile_threat_defense_connector.py b/msgraph_beta/generated/models/mobile_threat_defense_connector.py index 2b6b93e299b..a1224934956 100644 --- a/msgraph_beta/generated/models/mobile_threat_defense_connector.py +++ b/msgraph_beta/generated/models/mobile_threat_defense_connector.py @@ -50,8 +50,26 @@ class MobileThreatDefenseConnector(Entity, Parsable): microsoft_defender_for_endpoint_attach_enabled: Optional[bool] = None # The OdataType property odata_type: Optional[str] = None + # The display name of the Mobile Threat Defense partner. This is a read-only property determined by the partner metadata. + partner_display_name: Optional[str] = None + # The minimum Android version supported by the Mobile Threat Defense partner. + partner_minimum_supported_android_version: Optional[str] = None + # The minimum iOS version supported by the Mobile Threat Defense partner. + partner_minimum_supported_ios_version: Optional[str] = None + # The minimum macOS version supported by the Mobile Threat Defense partner. + partner_minimum_supported_mac_version: Optional[str] = None + # The minimum Windows version supported by the Mobile Threat Defense partner. + partner_minimum_supported_windows_version: Optional[str] = None # Partner state of this tenant. partner_state: Optional[MobileThreatPartnerTenantState] = None + # When TRUE, indicates that the Mobile Threat Defense partner supports Android Mobile Application Management. + partner_supports_android_mam: Optional[bool] = None + # When TRUE, indicates that the Mobile Threat Defense partner supports iOS certificate sync. + partner_supports_ios_certificate_sync: Optional[bool] = None + # When TRUE, indicates that the Mobile Threat Defense partner supports iOS Mobile Application Management. + partner_supports_ios_mam: Optional[bool] = None + # When TRUE, indicates that the Mobile Threat Defense partner supports Windows Mobile Application Management. + partner_supports_windows_mam: Optional[bool] = None # Indicates the number of days without receiving a heartbeat from a Mobile Threat Defense partner before the partner is marked as unresponsive. Intune will the ignore the data from this Mobile Threat Defense Partner for next compliance calculation. partner_unresponsiveness_threshold_in_days: Optional[int] = None # When TRUE, indicates that Intune will mark devices noncompliant on enabled platforms that do not meet the minimum version requirements of the Mobile Threat Defense partner. When FALSE, indicates that Intune will not mark devices noncompliant on enabled platforms that do not meet the minimum version requirements of the Mobile Threat Defense partner. Default value is FALSE. @@ -102,7 +120,16 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "macDeviceBlockedOnMissingPartnerData": lambda n : setattr(self, 'mac_device_blocked_on_missing_partner_data', n.get_bool_value()), "macEnabled": lambda n : setattr(self, 'mac_enabled', n.get_bool_value()), "microsoftDefenderForEndpointAttachEnabled": lambda n : setattr(self, 'microsoft_defender_for_endpoint_attach_enabled', n.get_bool_value()), + "partnerDisplayName": lambda n : setattr(self, 'partner_display_name', n.get_str_value()), + "partnerMinimumSupportedAndroidVersion": lambda n : setattr(self, 'partner_minimum_supported_android_version', n.get_str_value()), + "partnerMinimumSupportedIosVersion": lambda n : setattr(self, 'partner_minimum_supported_ios_version', n.get_str_value()), + "partnerMinimumSupportedMacVersion": lambda n : setattr(self, 'partner_minimum_supported_mac_version', n.get_str_value()), + "partnerMinimumSupportedWindowsVersion": lambda n : setattr(self, 'partner_minimum_supported_windows_version', n.get_str_value()), "partnerState": lambda n : setattr(self, 'partner_state', n.get_enum_value(MobileThreatPartnerTenantState)), + "partnerSupportsAndroidMam": lambda n : setattr(self, 'partner_supports_android_mam', n.get_bool_value()), + "partnerSupportsIosCertificateSync": lambda n : setattr(self, 'partner_supports_ios_certificate_sync', n.get_bool_value()), + "partnerSupportsIosMam": lambda n : setattr(self, 'partner_supports_ios_mam', n.get_bool_value()), + "partnerSupportsWindowsMam": lambda n : setattr(self, 'partner_supports_windows_mam', n.get_bool_value()), "partnerUnresponsivenessThresholdInDays": lambda n : setattr(self, 'partner_unresponsiveness_threshold_in_days', n.get_int_value()), "partnerUnsupportedOsVersionBlocked": lambda n : setattr(self, 'partner_unsupported_os_version_blocked', n.get_bool_value()), "windowsDeviceBlockedOnMissingPartnerData": lambda n : setattr(self, 'windows_device_blocked_on_missing_partner_data', n.get_bool_value()), @@ -138,7 +165,16 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_bool_value("macDeviceBlockedOnMissingPartnerData", self.mac_device_blocked_on_missing_partner_data) writer.write_bool_value("macEnabled", self.mac_enabled) writer.write_bool_value("microsoftDefenderForEndpointAttachEnabled", self.microsoft_defender_for_endpoint_attach_enabled) + writer.write_str_value("partnerDisplayName", self.partner_display_name) + writer.write_str_value("partnerMinimumSupportedAndroidVersion", self.partner_minimum_supported_android_version) + writer.write_str_value("partnerMinimumSupportedIosVersion", self.partner_minimum_supported_ios_version) + writer.write_str_value("partnerMinimumSupportedMacVersion", self.partner_minimum_supported_mac_version) + writer.write_str_value("partnerMinimumSupportedWindowsVersion", self.partner_minimum_supported_windows_version) writer.write_enum_value("partnerState", self.partner_state) + writer.write_bool_value("partnerSupportsAndroidMam", self.partner_supports_android_mam) + writer.write_bool_value("partnerSupportsIosCertificateSync", self.partner_supports_ios_certificate_sync) + writer.write_bool_value("partnerSupportsIosMam", self.partner_supports_ios_mam) + writer.write_bool_value("partnerSupportsWindowsMam", self.partner_supports_windows_mam) writer.write_int_value("partnerUnresponsivenessThresholdInDays", self.partner_unresponsiveness_threshold_in_days) writer.write_bool_value("partnerUnsupportedOsVersionBlocked", self.partner_unsupported_os_version_blocked) writer.write_bool_value("windowsDeviceBlockedOnMissingPartnerData", self.windows_device_blocked_on_missing_partner_data) diff --git a/msgraph_beta/generated/models/mobile_threat_partner_tenant_state.py b/msgraph_beta/generated/models/mobile_threat_partner_tenant_state.py index 94491c67be6..1892f30726b 100644 --- a/msgraph_beta/generated/models/mobile_threat_partner_tenant_state.py +++ b/msgraph_beta/generated/models/mobile_threat_partner_tenant_state.py @@ -13,6 +13,8 @@ class MobileThreatPartnerTenantState(str, Enum): NotSetUp = "notSetUp", # Indicates that the partner connector is in an error state. This can occur when the connector has a non-zero error code set due to an internal error in processing. Please see https://go.microsoft.com/fwlink/?linkid=2239039 for more information on connector states. Error = "error", + # Indicates that the partner connector catalog entry exists but the tenant has never configured it. + NeverConfigured = "neverConfigured", # Evolvable enumeration sentinel value. Do not use. UnknownFutureValue = "unknownFutureValue", diff --git a/msgraph_beta/generated/models/network.py b/msgraph_beta/generated/models/network.py index 4efcb628c91..6419692ffe7 100644 --- a/msgraph_beta/generated/models/network.py +++ b/msgraph_beta/generated/models/network.py @@ -7,9 +7,6 @@ @dataclass class Network(AdditionalDataHolder, BackedModel, Parsable): - """ - Singleton for network operations on Microsoft Graph. - """ # Stores model information. backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) diff --git a/msgraph_beta/generated/models/organization.py b/msgraph_beta/generated/models/organization.py index 27585f09f6b..f0959e4e92d 100644 --- a/msgraph_beta/generated/models/organization.py +++ b/msgraph_beta/generated/models/organization.py @@ -19,6 +19,7 @@ from .partner_tenant_type import PartnerTenantType from .privacy_profile import PrivacyProfile from .provisioned_plan import ProvisionedPlan + from .resource_quota import ResourceQuota from .verified_domain import VerifiedDomain from .directory_object import DirectoryObject @@ -77,6 +78,8 @@ class Organization(DirectoryObject, Parsable): privacy_profile: Optional[PrivacyProfile] = None # Not nullable. provisioned_plans: Optional[list[ProvisionedPlan]] = None + # The resourceQuotas property + resource_quotas: Optional[list[ResourceQuota]] = None # Not nullable. security_compliance_notification_mails: Optional[list[str]] = None # Not nullable. @@ -123,6 +126,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .partner_tenant_type import PartnerTenantType from .privacy_profile import PrivacyProfile from .provisioned_plan import ProvisionedPlan + from .resource_quota import ResourceQuota from .verified_domain import VerifiedDomain from .assigned_plan import AssignedPlan @@ -138,6 +142,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .partner_tenant_type import PartnerTenantType from .privacy_profile import PrivacyProfile from .provisioned_plan import ProvisionedPlan + from .resource_quota import ResourceQuota from .verified_domain import VerifiedDomain fields: dict[str, Callable[[Any], None]] = { @@ -166,6 +171,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "preferredLanguage": lambda n : setattr(self, 'preferred_language', n.get_str_value()), "privacyProfile": lambda n : setattr(self, 'privacy_profile', n.get_object_value(PrivacyProfile)), "provisionedPlans": lambda n : setattr(self, 'provisioned_plans', n.get_collection_of_object_values(ProvisionedPlan)), + "resourceQuotas": lambda n : setattr(self, 'resource_quotas', n.get_collection_of_object_values(ResourceQuota)), "securityComplianceNotificationMails": lambda n : setattr(self, 'security_compliance_notification_mails', n.get_collection_of_primitive_values(str)), "securityComplianceNotificationPhones": lambda n : setattr(self, 'security_compliance_notification_phones', n.get_collection_of_primitive_values(str)), "settings": lambda n : setattr(self, 'settings', n.get_object_value(OrganizationSettings)), @@ -213,6 +219,7 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_str_value("preferredLanguage", self.preferred_language) writer.write_object_value("privacyProfile", self.privacy_profile) writer.write_collection_of_object_values("provisionedPlans", self.provisioned_plans) + writer.write_collection_of_object_values("resourceQuotas", self.resource_quotas) writer.write_collection_of_primitive_values("securityComplianceNotificationMails", self.security_compliance_notification_mails) writer.write_collection_of_primitive_values("securityComplianceNotificationPhones", self.security_compliance_notification_phones) writer.write_object_value("settings", self.settings) diff --git a/msgraph_beta/generated/models/place.py b/msgraph_beta/generated/models/place.py index fa2e22e0f1d..0740840a57c 100644 --- a/msgraph_beta/generated/models/place.py +++ b/msgraph_beta/generated/models/place.py @@ -1,4 +1,5 @@ from __future__ import annotations +import datetime from collections.abc import Callable from dataclasses import dataclass, field from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter @@ -15,6 +16,7 @@ from .room import Room from .room_list import RoomList from .section import Section + from .string_dictionary import StringDictionary from .workspace import Workspace from .entity import Entity @@ -27,6 +29,8 @@ class Place(Entity, Parsable): check_ins: Optional[list[CheckInClaim]] = None # A collection of children places that is only used in the Upsert places API. children: Optional[list[Place]] = None + # Custom properties for the place. Each property has a string key and a string value. Nullable. + custom_properties: Optional[StringDictionary] = None # The name that is associated with the place. display_name: Optional[str] = None # Specifies the place location in latitude, longitude, and (optionally) altitude coordinates. @@ -35,6 +39,8 @@ class Place(Entity, Parsable): is_wheel_chair_accessible: Optional[bool] = None # User-defined description of the place. label: Optional[str] = None + # The date and time when the place was last updated. The timestamp is in ISO 8601 format and is always in UTC. Read-only. Nullable. + last_updated_time: Optional[datetime.datetime] = None # The OdataType property odata_type: Optional[str] = None # The ID of a parent place. @@ -105,6 +111,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .room import Room from .room_list import RoomList from .section import Section + from .string_dictionary import StringDictionary from .workspace import Workspace from .building import Building @@ -117,16 +124,19 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .room import Room from .room_list import RoomList from .section import Section + from .string_dictionary import StringDictionary from .workspace import Workspace fields: dict[str, Callable[[Any], None]] = { "address": lambda n : setattr(self, 'address', n.get_object_value(PhysicalAddress)), "checkIns": lambda n : setattr(self, 'check_ins', n.get_collection_of_object_values(CheckInClaim)), "children": lambda n : setattr(self, 'children', n.get_collection_of_object_values(Place)), + "customProperties": lambda n : setattr(self, 'custom_properties', n.get_object_value(StringDictionary)), "displayName": lambda n : setattr(self, 'display_name', n.get_str_value()), "geoCoordinates": lambda n : setattr(self, 'geo_coordinates', n.get_object_value(OutlookGeoCoordinates)), "isWheelChairAccessible": lambda n : setattr(self, 'is_wheel_chair_accessible', n.get_bool_value()), "label": lambda n : setattr(self, 'label', n.get_str_value()), + "lastUpdatedTime": lambda n : setattr(self, 'last_updated_time', n.get_datetime_value()), "parentId": lambda n : setattr(self, 'parent_id', n.get_str_value()), "phone": lambda n : setattr(self, 'phone', n.get_str_value()), "placeId": lambda n : setattr(self, 'place_id', n.get_str_value()), @@ -148,6 +158,7 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_object_value("address", self.address) writer.write_collection_of_object_values("checkIns", self.check_ins) writer.write_collection_of_object_values("children", self.children) + writer.write_object_value("customProperties", self.custom_properties) writer.write_str_value("displayName", self.display_name) writer.write_object_value("geoCoordinates", self.geo_coordinates) writer.write_bool_value("isWheelChairAccessible", self.is_wheel_chair_accessible) diff --git a/msgraph_beta/generated/models/policy_deletable_item.py b/msgraph_beta/generated/models/policy_deletable_item.py index 21d0f4205a7..b6d9fb909ce 100644 --- a/msgraph_beta/generated/models/policy_deletable_item.py +++ b/msgraph_beta/generated/models/policy_deletable_item.py @@ -7,6 +7,8 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: + from .authentication_methods_policy import AuthenticationMethodsPolicy + from .authentication_strength_policy import AuthenticationStrengthPolicy from .compliant_network_named_location import CompliantNetworkNamedLocation from .conditional_access_policy import ConditionalAccessPolicy from .country_named_location import CountryNamedLocation @@ -46,6 +48,14 @@ def create_from_discriminator_value(parse_node: ParseNode) -> PolicyDeletableIte mapping_value = child_node.get_str_value() if child_node else None except AttributeError: mapping_value = None + if mapping_value and mapping_value.casefold() == "#microsoft.graph.authenticationMethodsPolicy".casefold(): + from .authentication_methods_policy import AuthenticationMethodsPolicy + + return AuthenticationMethodsPolicy() + if mapping_value and mapping_value.casefold() == "#microsoft.graph.authenticationStrengthPolicy".casefold(): + from .authentication_strength_policy import AuthenticationStrengthPolicy + + return AuthenticationStrengthPolicy() if mapping_value and mapping_value.casefold() == "#microsoft.graph.compliantNetworkNamedLocation".casefold(): from .compliant_network_named_location import CompliantNetworkNamedLocation @@ -101,6 +111,8 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ + from .authentication_methods_policy import AuthenticationMethodsPolicy + from .authentication_strength_policy import AuthenticationStrengthPolicy from .compliant_network_named_location import CompliantNetworkNamedLocation from .conditional_access_policy import ConditionalAccessPolicy from .country_named_location import CountryNamedLocation @@ -114,6 +126,8 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .service_tag_named_location import ServiceTagNamedLocation from .what_if_analysis_result import WhatIfAnalysisResult + from .authentication_methods_policy import AuthenticationMethodsPolicy + from .authentication_strength_policy import AuthenticationStrengthPolicy from .compliant_network_named_location import CompliantNetworkNamedLocation from .conditional_access_policy import ConditionalAccessPolicy from .country_named_location import CountryNamedLocation diff --git a/msgraph_beta/generated/models/policy_location.py b/msgraph_beta/generated/models/policy_location.py index 7be7d78018c..aaed4450963 100644 --- a/msgraph_beta/generated/models/policy_location.py +++ b/msgraph_beta/generated/models/policy_location.py @@ -6,9 +6,9 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: + from .policy_location_agent import PolicyLocationAgent from .policy_location_application import PolicyLocationApplication from .policy_location_domain import PolicyLocationDomain - from .policy_location_tool import PolicyLocationTool from .policy_location_url import PolicyLocationUrl @dataclass @@ -37,6 +37,10 @@ def create_from_discriminator_value(parse_node: ParseNode) -> PolicyLocation: mapping_value = child_node.get_str_value() if child_node else None except AttributeError: mapping_value = None + if mapping_value and mapping_value.casefold() == "#microsoft.graph.policyLocationAgent".casefold(): + from .policy_location_agent import PolicyLocationAgent + + return PolicyLocationAgent() if mapping_value and mapping_value.casefold() == "#microsoft.graph.policyLocationApplication".casefold(): from .policy_location_application import PolicyLocationApplication @@ -45,10 +49,6 @@ def create_from_discriminator_value(parse_node: ParseNode) -> PolicyLocation: from .policy_location_domain import PolicyLocationDomain return PolicyLocationDomain() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.policyLocationTool".casefold(): - from .policy_location_tool import PolicyLocationTool - - return PolicyLocationTool() if mapping_value and mapping_value.casefold() == "#microsoft.graph.policyLocationUrl".casefold(): from .policy_location_url import PolicyLocationUrl @@ -60,14 +60,14 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ + from .policy_location_agent import PolicyLocationAgent from .policy_location_application import PolicyLocationApplication from .policy_location_domain import PolicyLocationDomain - from .policy_location_tool import PolicyLocationTool from .policy_location_url import PolicyLocationUrl + from .policy_location_agent import PolicyLocationAgent from .policy_location_application import PolicyLocationApplication from .policy_location_domain import PolicyLocationDomain - from .policy_location_tool import PolicyLocationTool from .policy_location_url import PolicyLocationUrl fields: dict[str, Callable[[Any], None]] = { diff --git a/msgraph_beta/generated/models/policy_location_agent.py b/msgraph_beta/generated/models/policy_location_agent.py new file mode 100644 index 00000000000..faf4353184a --- /dev/null +++ b/msgraph_beta/generated/models/policy_location_agent.py @@ -0,0 +1,60 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .agent_metadata import AgentMetadata + from .policy_location_application import PolicyLocationApplication + +from .policy_location_application import PolicyLocationApplication + +@dataclass +class PolicyLocationAgent(PolicyLocationApplication, Parsable): + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.policyLocationAgent" + # The agentMetadata property + agent_metadata: Optional[AgentMetadata] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> PolicyLocationAgent: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: PolicyLocationAgent + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return PolicyLocationAgent() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .agent_metadata import AgentMetadata + from .policy_location_application import PolicyLocationApplication + + from .agent_metadata import AgentMetadata + from .policy_location_application import PolicyLocationApplication + + fields: dict[str, Callable[[Any], None]] = { + "agentMetadata": lambda n : setattr(self, 'agent_metadata', n.get_object_value(AgentMetadata)), + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + writer.write_object_value("agentMetadata", self.agent_metadata) + + diff --git a/msgraph_beta/generated/models/policy_location_application.py b/msgraph_beta/generated/models/policy_location_application.py index 0e1be5e9160..99fc409ed7c 100644 --- a/msgraph_beta/generated/models/policy_location_application.py +++ b/msgraph_beta/generated/models/policy_location_application.py @@ -6,6 +6,7 @@ if TYPE_CHECKING: from .policy_location import PolicyLocation + from .policy_location_agent import PolicyLocationAgent from .policy_location import PolicyLocation @@ -23,6 +24,15 @@ def create_from_discriminator_value(parse_node: ParseNode) -> PolicyLocationAppl """ if parse_node is None: raise TypeError("parse_node cannot be null.") + try: + child_node = parse_node.get_child_node("@odata.type") + mapping_value = child_node.get_str_value() if child_node else None + except AttributeError: + mapping_value = None + if mapping_value and mapping_value.casefold() == "#microsoft.graph.policyLocationAgent".casefold(): + from .policy_location_agent import PolicyLocationAgent + + return PolicyLocationAgent() return PolicyLocationApplication() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: @@ -31,8 +41,10 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: Returns: dict[str, Callable[[ParseNode], None]] """ from .policy_location import PolicyLocation + from .policy_location_agent import PolicyLocationAgent from .policy_location import PolicyLocation + from .policy_location_agent import PolicyLocationAgent fields: dict[str, Callable[[Any], None]] = { } diff --git a/msgraph_beta/generated/models/policy_scope_base.py b/msgraph_beta/generated/models/policy_scope_base.py index 09651c72a23..ad13a6f35a2 100644 --- a/msgraph_beta/generated/models/policy_scope_base.py +++ b/msgraph_beta/generated/models/policy_scope_base.py @@ -24,7 +24,7 @@ class PolicyScopeBase(AdditionalDataHolder, BackedModel, Parsable): activities: Optional[UserActivityTypes] = None # The executionMode property execution_mode: Optional[ExecutionMode] = None - # The locationExclusions property + # Locations excluded from the policy scope. When specified, the effective scope is the set of locations in locations minus the locations in locationExclusions. Required. location_exclusions: Optional[list[PolicyLocation]] = None # The locations (like domains or URLs) to be protected. Required. locations: Optional[list[PolicyLocation]] = None diff --git a/msgraph_beta/generated/models/process_content_request.py b/msgraph_beta/generated/models/process_content_request.py index 5ff0b369f83..0cb4e318f99 100644 --- a/msgraph_beta/generated/models/process_content_request.py +++ b/msgraph_beta/generated/models/process_content_request.py @@ -29,7 +29,7 @@ class ProcessContentRequest(AdditionalDataHolder, BackedModel, Parsable): context_metadata: Optional[ContextMetadata] = None # The deviceMetadata property device_metadata: Optional[DeviceMetadata] = None - # The evaluationScope property + # Specifies the evaluation context for the request. Optional generally; required for the tenant-scoped processContent action, where type must be agent. When omitted from other actions, the request uses the default tenant evaluation context. evaluation_scope: Optional[EvaluationScope] = None # The integratedAppMetadata property integrated_app_metadata: Optional[IntegratedApplicationMetadata] = None diff --git a/msgraph_beta/generated/models/protected_application_metadata.py b/msgraph_beta/generated/models/protected_application_metadata.py index e39737548fd..8a5f71af68d 100644 --- a/msgraph_beta/generated/models/protected_application_metadata.py +++ b/msgraph_beta/generated/models/protected_application_metadata.py @@ -14,10 +14,8 @@ class ProtectedApplicationMetadata(IntegratedApplicationMetadata, Parsable): # The OdataType property odata_type: Optional[str] = "#microsoft.graph.protectedApplicationMetadata" - # The client (application) ID of the Microsoft Entra application. Required. + # The location of the application being protected. For Agent-to-Tool (A2T) scenarios, this represents the tool receiving the content. Required. application_location: Optional[PolicyLocation] = None - # The sourceLocation property - source_location: Optional[PolicyLocation] = None @staticmethod def create_from_discriminator_value(parse_node: ParseNode) -> ProtectedApplicationMetadata: @@ -43,7 +41,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: fields: dict[str, Callable[[Any], None]] = { "applicationLocation": lambda n : setattr(self, 'application_location', n.get_object_value(PolicyLocation)), - "sourceLocation": lambda n : setattr(self, 'source_location', n.get_object_value(PolicyLocation)), } super_fields = super().get_field_deserializers() fields.update(super_fields) @@ -59,6 +56,5 @@ def serialize(self,writer: SerializationWriter) -> None: raise TypeError("writer cannot be null.") super().serialize(writer) writer.write_object_value("applicationLocation", self.application_location) - writer.write_object_value("sourceLocation", self.source_location) diff --git a/msgraph_beta/generated/models/related_tenants_refresh_status.py b/msgraph_beta/generated/models/related_tenants_refresh_status.py index 807a9927f5b..21d7077e17c 100644 --- a/msgraph_beta/generated/models/related_tenants_refresh_status.py +++ b/msgraph_beta/generated/models/related_tenants_refresh_status.py @@ -1,4 +1,5 @@ from __future__ import annotations +import datetime from collections.abc import Callable from dataclasses import dataclass, field from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter @@ -14,10 +15,10 @@ class RelatedTenantsRefreshStatus(AdditionalDataHolder, BackedModel, Parsable): additional_data: dict[str, Any] = field(default_factory=dict) # The isFirstRefresh property is_first_refresh: Optional[bool] = None + # The mostRecentRefreshDateTime property + most_recent_refresh_date_time: Optional[datetime.datetime] = None # The mostRecentRefreshRequestStatus property most_recent_refresh_request_status: Optional[str] = None - # The mostRecentRefreshTime property - most_recent_refresh_time: Optional[str] = None # The OdataType property odata_type: Optional[str] = None @@ -39,8 +40,8 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ fields: dict[str, Callable[[Any], None]] = { "isFirstRefresh": lambda n : setattr(self, 'is_first_refresh', n.get_bool_value()), + "mostRecentRefreshDateTime": lambda n : setattr(self, 'most_recent_refresh_date_time', n.get_datetime_value()), "mostRecentRefreshRequestStatus": lambda n : setattr(self, 'most_recent_refresh_request_status', n.get_str_value()), - "mostRecentRefreshTime": lambda n : setattr(self, 'most_recent_refresh_time', n.get_str_value()), "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), } return fields @@ -54,8 +55,8 @@ def serialize(self,writer: SerializationWriter) -> None: if writer is None: raise TypeError("writer cannot be null.") writer.write_bool_value("isFirstRefresh", self.is_first_refresh) + writer.write_datetime_value("mostRecentRefreshDateTime", self.most_recent_refresh_date_time) writer.write_str_value("mostRecentRefreshRequestStatus", self.most_recent_refresh_request_status) - writer.write_str_value("mostRecentRefreshTime", self.most_recent_refresh_time) writer.write_str_value("@odata.type", self.odata_type) writer.write_additional_data_value(self.additional_data) diff --git a/msgraph_beta/generated/app/calls/item/participants/item/admit_from_lobby/admit_from_lobby_post_request_body.py b/msgraph_beta/generated/models/resource_quota.py similarity index 60% rename from msgraph_beta/generated/app/calls/item/participants/item/admit_from_lobby/admit_from_lobby_post_request_body.py rename to msgraph_beta/generated/models/resource_quota.py index 83915610bf3..1391caed490 100644 --- a/msgraph_beta/generated/app/calls/item/participants/item/admit_from_lobby/admit_from_lobby_post_request_body.py +++ b/msgraph_beta/generated/models/resource_quota.py @@ -5,34 +5,50 @@ from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton from typing import Any, Optional, TYPE_CHECKING, Union +if TYPE_CHECKING: + from .resource_quota_type import ResourceQuotaType + @dataclass -class AdmitFromLobbyPostRequestBody(AdditionalDataHolder, BackedModel, Parsable): +class ResourceQuota(AdditionalDataHolder, BackedModel, Parsable): # Stores model information. backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. additional_data: dict[str, Any] = field(default_factory=dict) - # The clientContext property - client_context: Optional[str] = None + # The maxPercentage property + max_percentage: Optional[int] = None + # The OdataType property + odata_type: Optional[str] = None + # The resourceType property + resource_type: Optional[ResourceQuotaType] = None + # The total property + total: Optional[int] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AdmitFromLobbyPostRequestBody: + def create_from_discriminator_value(parse_node: ParseNode) -> ResourceQuota: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AdmitFromLobbyPostRequestBody + Returns: ResourceQuota """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AdmitFromLobbyPostRequestBody() + return ResourceQuota() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ + from .resource_quota_type import ResourceQuotaType + + from .resource_quota_type import ResourceQuotaType + fields: dict[str, Callable[[Any], None]] = { - "clientContext": lambda n : setattr(self, 'client_context', n.get_str_value()), + "maxPercentage": lambda n : setattr(self, 'max_percentage', n.get_int_value()), + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), + "resourceType": lambda n : setattr(self, 'resource_type', n.get_enum_value(ResourceQuotaType)), + "total": lambda n : setattr(self, 'total', n.get_int_value()), } return fields @@ -44,7 +60,10 @@ def serialize(self,writer: SerializationWriter) -> None: """ if writer is None: raise TypeError("writer cannot be null.") - writer.write_str_value("clientContext", self.client_context) + writer.write_int_value("maxPercentage", self.max_percentage) + writer.write_str_value("@odata.type", self.odata_type) + writer.write_enum_value("resourceType", self.resource_type) + writer.write_int_value("total", self.total) writer.write_additional_data_value(self.additional_data) diff --git a/msgraph_beta/generated/models/resource_quota_type.py b/msgraph_beta/generated/models/resource_quota_type.py new file mode 100644 index 00000000000..ceeeb60cc49 --- /dev/null +++ b/msgraph_beta/generated/models/resource_quota_type.py @@ -0,0 +1,8 @@ +from enum import Enum + +class ResourceQuotaType(str, Enum): + AgentIdentityBlueprint = "agentIdentityBlueprint", + AgentIdentity = "agentIdentity", + ManagedIdentity = "managedIdentity", + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/restore_point.py b/msgraph_beta/generated/models/restore_point.py index ab138596c78..32dad2472af 100644 --- a/msgraph_beta/generated/models/restore_point.py +++ b/msgraph_beta/generated/models/restore_point.py @@ -20,7 +20,7 @@ class RestorePoint(Entity, Parsable): odata_type: Optional[str] = None # Date time when the restore point was created. protection_date_time: Optional[datetime.datetime] = None - # The site, drive, or mailbox units that are protected under a protection policy. + # The site, drive, or mailbox unit protected under a protection policy. Supports $expand and $filter on protectionUnit/policyId using the eq operator. protection_unit: Optional[ProtectionUnitBase] = None # The type of the restore point. The possible values are: none, fastRestore, unknownFutureValue, includeNewerItems. Use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: includeNewerItems. tags: Optional[RestorePointTags] = None diff --git a/msgraph_beta/generated/models/restore_session_base.py b/msgraph_beta/generated/models/restore_session_base.py index c926a2c7054..e9efca78685 100644 --- a/msgraph_beta/generated/models/restore_session_base.py +++ b/msgraph_beta/generated/models/restore_session_base.py @@ -34,6 +34,8 @@ class RestoreSessionBase(Entity, Parsable): last_modified_date_time: Optional[datetime.datetime] = None # The OdataType property odata_type: Optional[str] = None + # The identifier of the protection policy that scopes the restore session. When supplied during create or update, the service validates that the referenced protection units belong to the specified policy. + policy_id: Optional[str] = None # Indicates whether the restore session was created normally or by a bulk job. restore_job_type: Optional[RestoreJobType] = None # The number of metadata artifacts that belong to this restore session. @@ -101,6 +103,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "error": lambda n : setattr(self, 'error', n.get_object_value(PublicError)), "lastModifiedBy": lambda n : setattr(self, 'last_modified_by', n.get_object_value(IdentitySet)), "lastModifiedDateTime": lambda n : setattr(self, 'last_modified_date_time', n.get_datetime_value()), + "policyId": lambda n : setattr(self, 'policy_id', n.get_str_value()), "restoreJobType": lambda n : setattr(self, 'restore_job_type', n.get_enum_value(RestoreJobType)), "restoreSessionArtifactCount": lambda n : setattr(self, 'restore_session_artifact_count', n.get_object_value(RestoreSessionArtifactCount)), "status": lambda n : setattr(self, 'status', n.get_enum_value(RestoreSessionStatus)), @@ -124,6 +127,7 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_object_value("error", self.error) writer.write_object_value("lastModifiedBy", self.last_modified_by) writer.write_datetime_value("lastModifiedDateTime", self.last_modified_date_time) + writer.write_str_value("policyId", self.policy_id) writer.write_enum_value("restoreJobType", self.restore_job_type) writer.write_object_value("restoreSessionArtifactCount", self.restore_session_artifact_count) writer.write_enum_value("status", self.status) diff --git a/msgraph_beta/generated/models/search_hit.py b/msgraph_beta/generated/models/search_hit.py index a5ea902428f..c88f1e5085c 100644 --- a/msgraph_beta/generated/models/search_hit.py +++ b/msgraph_beta/generated/models/search_hit.py @@ -7,6 +7,7 @@ if TYPE_CHECKING: from .entity import Entity + from .sensitivity_label_info import SensitivityLabelInfo @dataclass class SearchHit(AdditionalDataHolder, BackedModel, Parsable): @@ -21,7 +22,7 @@ class SearchHit(AdditionalDataHolder, BackedModel, Parsable): hit_id: Optional[str] = None # The id property id: Optional[str] = None - # Indicates whether the current result is collapses when the collapseProperties property in the searchRequest is used. + # Indicates whether the current result is collapsed when the collapseProperties property in the searchRequest is used. is_collapsed: Optional[bool] = None # The OdataType property odata_type: Optional[str] = None @@ -29,12 +30,14 @@ class SearchHit(AdditionalDataHolder, BackedModel, Parsable): rank: Optional[int] = None # The resource property resource: Optional[Entity] = None - # ID of the result template for rendering the search result. This ID must map to a display layout in the resultTemplates dictionary, included in the searchresponse as well. + # ID of the result template for rendering the search result. This ID must map to a display layout in the resultTemplates dictionary, included in the searchResponse as well. result_template_id: Optional[str] = None # The score property score: Optional[int] = None # The summary property search_hit_summary: Optional[str] = None + # The sensitivity label applied to the search result resource, or null if the resource has no sensitivity label. + sensitivity_label: Optional[SensitivityLabelInfo] = None # The source property source: Optional[Entity] = None # A summary of the result, if a summary is available. @@ -57,8 +60,10 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: Returns: dict[str, Callable[[ParseNode], None]] """ from .entity import Entity + from .sensitivity_label_info import SensitivityLabelInfo from .entity import Entity + from .sensitivity_label_info import SensitivityLabelInfo fields: dict[str, Callable[[Any], None]] = { "contentSource": lambda n : setattr(self, 'content_source', n.get_str_value()), @@ -71,6 +76,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "resultTemplateId": lambda n : setattr(self, 'result_template_id', n.get_str_value()), "_score": lambda n : setattr(self, 'score', n.get_int_value()), "_summary": lambda n : setattr(self, 'search_hit_summary', n.get_str_value()), + "sensitivityLabel": lambda n : setattr(self, 'sensitivity_label', n.get_object_value(SensitivityLabelInfo)), "_source": lambda n : setattr(self, 'source', n.get_object_value(Entity)), "summary": lambda n : setattr(self, 'summary', n.get_str_value()), } @@ -94,6 +100,7 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_str_value("resultTemplateId", self.result_template_id) writer.write_int_value("_score", self.score) writer.write_str_value("_summary", self.search_hit_summary) + writer.write_object_value("sensitivityLabel", self.sensitivity_label) writer.write_object_value("_source", self.source) writer.write_str_value("summary", self.summary) writer.write_additional_data_value(self.additional_data) diff --git a/msgraph_beta/generated/models/security/case_management/case.py b/msgraph_beta/generated/models/security/case_management/case.py index 332b3fcb4c2..aabab5f9f35 100644 --- a/msgraph_beta/generated/models/security/case_management/case.py +++ b/msgraph_beta/generated/models/security/case_management/case.py @@ -8,6 +8,7 @@ from .activity import Activity from .attachment import Attachment from .case_management_entity import CaseManagementEntity + from .case_sla_policy_entry import CaseSlaPolicyEntry from .custom_field_values import CustomFieldValues from .exposure_case import ExposureCase from .generic_case import GenericCase @@ -31,6 +32,8 @@ class Case(CaseManagementEntity, Parsable): display_name: Optional[str] = None # Links from the case to related security resources. Supports $expand. relations: Optional[list[Relation]] = None + # A denormalized, read-only collection of SLA (service level agreement) policy status entries for the case. Each entry represents one SLA policy applied to the case, including its current status and breach target time. Computed by the service; any value supplied in a create or update request is silently ignored. Supports $filter using the any() lambda operator only, for example, $filter=slaPolicies/any(p: p/status eq 'breached'). The all() lambda operator and other collection functions aren't supported. Doesn't support $orderby. + sla_policies: Optional[list[CaseSlaPolicyEntry]] = None # The tenant-defined lifecycle status of the case. Use a displayName value returned in the status tree by List statuses from /security/caseManagement/caseTypeConfigurations/genericCase/statuses or /security/caseManagement/caseTypeConfigurations/incidentCase/statuses, depending on the case type. Supports $filter (eq). status: Optional[str] = None # Tasks used to track work required to resolve the case. Supports $expand. @@ -72,6 +75,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .activity import Activity from .attachment import Attachment from .case_management_entity import CaseManagementEntity + from .case_sla_policy_entry import CaseSlaPolicyEntry from .custom_field_values import CustomFieldValues from .exposure_case import ExposureCase from .generic_case import GenericCase @@ -82,6 +86,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .activity import Activity from .attachment import Attachment from .case_management_entity import CaseManagementEntity + from .case_sla_policy_entry import CaseSlaPolicyEntry from .custom_field_values import CustomFieldValues from .exposure_case import ExposureCase from .generic_case import GenericCase @@ -95,6 +100,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "customFields": lambda n : setattr(self, 'custom_fields', n.get_object_value(CustomFieldValues)), "displayName": lambda n : setattr(self, 'display_name', n.get_str_value()), "relations": lambda n : setattr(self, 'relations', n.get_collection_of_object_values(Relation)), + "slaPolicies": lambda n : setattr(self, 'sla_policies', n.get_collection_of_object_values(CaseSlaPolicyEntry)), "status": lambda n : setattr(self, 'status', n.get_str_value()), "tasks": lambda n : setattr(self, 'tasks', n.get_collection_of_object_values(Task)), } diff --git a/msgraph_beta/generated/models/security/case_management/case_sla_policy_entry.py b/msgraph_beta/generated/models/security/case_management/case_sla_policy_entry.py new file mode 100644 index 00000000000..f4420385908 --- /dev/null +++ b/msgraph_beta/generated/models/security/case_management/case_sla_policy_entry.py @@ -0,0 +1,71 @@ +from __future__ import annotations +import datetime +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter +from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .case_sla_policy_status import CaseSlaPolicyStatus + +@dataclass +class CaseSlaPolicyEntry(AdditionalDataHolder, BackedModel, Parsable): + # Stores model information. + backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) + + # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + additional_data: dict[str, Any] = field(default_factory=dict) + # The date and time the SLA policy is targeted to breach, if applicable. null when the policy is paused or completed. Computed by the service. + breach_target_date_time: Optional[datetime.datetime] = None + # The OdataType property + odata_type: Optional[str] = None + # The display name of the SLA policy. Computed by the service. + policy_display_name: Optional[str] = None + # The unique identifier of the SLA policy, assigned by the SLA policy engine. Computed by the service. + policy_id: Optional[str] = None + # The status property + status: Optional[CaseSlaPolicyStatus] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> CaseSlaPolicyEntry: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: CaseSlaPolicyEntry + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return CaseSlaPolicyEntry() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .case_sla_policy_status import CaseSlaPolicyStatus + + from .case_sla_policy_status import CaseSlaPolicyStatus + + fields: dict[str, Callable[[Any], None]] = { + "breachTargetDateTime": lambda n : setattr(self, 'breach_target_date_time', n.get_datetime_value()), + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), + "policyDisplayName": lambda n : setattr(self, 'policy_display_name', n.get_str_value()), + "policyId": lambda n : setattr(self, 'policy_id', n.get_str_value()), + "status": lambda n : setattr(self, 'status', n.get_enum_value(CaseSlaPolicyStatus)), + } + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + writer.write_str_value("@odata.type", self.odata_type) + writer.write_enum_value("status", self.status) + writer.write_additional_data_value(self.additional_data) + + diff --git a/msgraph_beta/generated/models/security/case_management/case_sla_policy_status.py b/msgraph_beta/generated/models/security/case_management/case_sla_policy_status.py new file mode 100644 index 00000000000..59b5691216f --- /dev/null +++ b/msgraph_beta/generated/models/security/case_management/case_sla_policy_status.py @@ -0,0 +1,11 @@ +from enum import Enum + +class CaseSlaPolicyStatus(str, Enum): + Active = "active", + AtRisk = "atRisk", + Breached = "breached", + Paused = "paused", + CompletedMet = "completedMet", + CompletedBreached = "completedBreached", + UnknownFutureValue = "unknownFutureValue", + diff --git a/msgraph_beta/generated/models/sensitive_type.py b/msgraph_beta/generated/models/sensitive_type.py index 1b4744b73dc..10f8643f39d 100644 --- a/msgraph_beta/generated/models/sensitive_type.py +++ b/msgraph_beta/generated/models/sensitive_type.py @@ -15,27 +15,27 @@ @dataclass class SensitiveType(Entity, Parsable): - # The classificationMethod property + # The classification method. The possible values are: patternMatch, exactDataMatch, fingerprint, machineLearning, privacyDataMatch, aiPowered, unknownFutureValue. privacyDataMatch performs privacy data matching based on tenant data. aiPowered performs AI-powered classification and can benefit from supported caller-supplied embeddings. unknownFutureValue is an evolvable enumeration sentinel value. Don't use it. classification_method: Optional[ClassificationMethod] = None - # The description property + # The description of the sensitive information type. description: Optional[str] = None - # The lastModifiedDateTime property + # The date and time when the sensitive information type was last modified. last_modified_date_time: Optional[datetime.datetime] = None - # The name property + # The name of the sensitive information type. name: Optional[str] = None # The OdataType property odata_type: Optional[str] = None - # The publisherName property + # The name of the publisher. publisher_name: Optional[str] = None - # The rulePackageId property + # The identifier of the rule package. rule_package_id: Optional[str] = None - # The rulePackageType property + # The type of the rule package. rule_package_type: Optional[str] = None - # The scope property + # The scope of the sensitive information type. The possible values are: fullDocument, partialDocument. scope: Optional[SensitiveTypeScope] = None - # The sensitiveTypeSource property + # The source of sensitive type. The possible values are: outOfBox, tenant. sensitive_type_source: Optional[SensitiveTypeSource] = None - # The state property + # The state of the sensitive information type. state: Optional[str] = None @staticmethod diff --git a/msgraph_beta/generated/models/sensitivity_label_info.py b/msgraph_beta/generated/models/sensitivity_label_info.py new file mode 100644 index 00000000000..b5819b2942e --- /dev/null +++ b/msgraph_beta/generated/models/sensitivity_label_info.py @@ -0,0 +1,70 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter +from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton +from typing import Any, Optional, TYPE_CHECKING, Union + +@dataclass +class SensitivityLabelInfo(AdditionalDataHolder, BackedModel, Parsable): + # Stores model information. + backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False) + + # Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + additional_data: dict[str, Any] = field(default_factory=dict) + # The color that the UI should display for the label, if configured. + color: Optional[str] = None + # The display name of the sensitivity label. + display_name: Optional[str] = None + # The OdataType property + odata_type: Optional[str] = None + # The display priority of the sensitivity label. + priority: Optional[int] = None + # The identifier of the sensitivity label. + sensitivity_label_id: Optional[str] = None + # The tooltip that the UI should display for the sensitivity label. + tooltip: Optional[str] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> SensitivityLabelInfo: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: SensitivityLabelInfo + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return SensitivityLabelInfo() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + fields: dict[str, Callable[[Any], None]] = { + "color": lambda n : setattr(self, 'color', n.get_str_value()), + "displayName": lambda n : setattr(self, 'display_name', n.get_str_value()), + "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), + "priority": lambda n : setattr(self, 'priority', n.get_int_value()), + "sensitivityLabelId": lambda n : setattr(self, 'sensitivity_label_id', n.get_str_value()), + "tooltip": lambda n : setattr(self, 'tooltip', n.get_str_value()), + } + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + writer.write_str_value("color", self.color) + writer.write_str_value("displayName", self.display_name) + writer.write_str_value("@odata.type", self.odata_type) + writer.write_int_value("priority", self.priority) + writer.write_str_value("sensitivityLabelId", self.sensitivity_label_id) + writer.write_str_value("tooltip", self.tooltip) + writer.write_additional_data_value(self.additional_data) + + diff --git a/msgraph_beta/generated/models/service_principal.py b/msgraph_beta/generated/models/service_principal.py index 305c4d1fa2b..6c79038ef15 100644 --- a/msgraph_beta/generated/models/service_principal.py +++ b/msgraph_beta/generated/models/service_principal.py @@ -21,7 +21,6 @@ from .endpoint import Endpoint from .federated_identity_credential import FederatedIdentityCredential from .home_realm_discovery_policy import HomeRealmDiscoveryPolicy - from .identity_governance.identity_lifecycle import IdentityLifecycle from .informational_url import InformationalUrl from .key_credential import KeyCredential from .license_details import LicenseDetails @@ -105,8 +104,6 @@ class ServicePrincipal(DirectoryObject, Parsable): key_credentials: Optional[list[KeyCredential]] = None # The licenseDetails property license_details: Optional[list[LicenseDetails]] = None - # The lifecycle property - lifecycle: Optional[IdentityLifecycle] = None # Specifies the URL where the service provider redirects the user to Microsoft Entra ID to authenticate. Microsoft Entra ID uses the URL to launch the application from Microsoft 365 or the Microsoft Entra My Apps. When blank, Microsoft Entra ID performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Microsoft Entra My Apps, or the Microsoft Entra SSO URL. login_url: Optional[str] = None # Specifies the URL that the Microsoft's authorization service uses to sign out a user using OpenId Connect front-channel, back-channel, or SAML sign out protocols. @@ -211,7 +208,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .endpoint import Endpoint from .federated_identity_credential import FederatedIdentityCredential from .home_realm_discovery_policy import HomeRealmDiscoveryPolicy - from .identity_governance.identity_lifecycle import IdentityLifecycle from .informational_url import InformationalUrl from .key_credential import KeyCredential from .license_details import LicenseDetails @@ -241,7 +237,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: from .endpoint import Endpoint from .federated_identity_credential import FederatedIdentityCredential from .home_realm_discovery_policy import HomeRealmDiscoveryPolicy - from .identity_governance.identity_lifecycle import IdentityLifecycle from .informational_url import InformationalUrl from .key_credential import KeyCredential from .license_details import LicenseDetails @@ -289,7 +284,6 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "isDisabled": lambda n : setattr(self, 'is_disabled', n.get_bool_value()), "keyCredentials": lambda n : setattr(self, 'key_credentials', n.get_collection_of_object_values(KeyCredential)), "licenseDetails": lambda n : setattr(self, 'license_details', n.get_collection_of_object_values(LicenseDetails)), - "lifecycle": lambda n : setattr(self, 'lifecycle', n.get_object_value(IdentityLifecycle)), "loginUrl": lambda n : setattr(self, 'login_url', n.get_str_value()), "logoutUrl": lambda n : setattr(self, 'logout_url', n.get_str_value()), "memberOf": lambda n : setattr(self, 'member_of', n.get_collection_of_object_values(DirectoryObject)), @@ -365,7 +359,6 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_bool_value("isDisabled", self.is_disabled) writer.write_collection_of_object_values("keyCredentials", self.key_credentials) writer.write_collection_of_object_values("licenseDetails", self.license_details) - writer.write_object_value("lifecycle", self.lifecycle) writer.write_str_value("loginUrl", self.login_url) writer.write_str_value("logoutUrl", self.logout_url) writer.write_collection_of_object_values("memberOf", self.member_of) diff --git a/msgraph_beta/generated/models/sign_in.py b/msgraph_beta/generated/models/sign_in.py index 98b2822a5d0..dc048eb2810 100644 --- a/msgraph_beta/generated/models/sign_in.py +++ b/msgraph_beta/generated/models/sign_in.py @@ -157,6 +157,8 @@ class SignIn(Entity, Parsable): risk_level_during_sign_in: Optional[RiskLevel] = None # The risk state of a risky user, sign-in, or a risk event. Possible values: none, confirmedSafe, remediated, dismissed, atRisk, confirmedCompromised, or unknownFutureValue. Supports $filter (eq). risk_state: Optional[RiskState] = None + # The rootActorId property + root_actor_id: Optional[str] = None # The unique identifier of the key credential used by the service principal to authenticate. service_principal_credential_key_id: Optional[str] = None # The certificate thumbprint of the certificate used by the service principal to authenticate. @@ -337,6 +339,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "riskLevelAggregated": lambda n : setattr(self, 'risk_level_aggregated', n.get_enum_value(RiskLevel)), "riskLevelDuringSignIn": lambda n : setattr(self, 'risk_level_during_sign_in', n.get_enum_value(RiskLevel)), "riskState": lambda n : setattr(self, 'risk_state', n.get_enum_value(RiskState)), + "rootActorId": lambda n : setattr(self, 'root_actor_id', n.get_str_value()), "servicePrincipalCredentialKeyId": lambda n : setattr(self, 'service_principal_credential_key_id', n.get_str_value()), "servicePrincipalCredentialThumbprint": lambda n : setattr(self, 'service_principal_credential_thumbprint', n.get_str_value()), "servicePrincipalId": lambda n : setattr(self, 'service_principal_id', n.get_str_value()), @@ -427,6 +430,7 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_enum_value("riskLevelAggregated", self.risk_level_aggregated) writer.write_enum_value("riskLevelDuringSignIn", self.risk_level_during_sign_in) writer.write_enum_value("riskState", self.risk_state) + writer.write_str_value("rootActorId", self.root_actor_id) writer.write_str_value("servicePrincipalCredentialKeyId", self.service_principal_credential_key_id) writer.write_str_value("servicePrincipalCredentialThumbprint", self.service_principal_credential_thumbprint) writer.write_str_value("servicePrincipalId", self.service_principal_id) diff --git a/msgraph_beta/generated/models/subject_set.py b/msgraph_beta/generated/models/subject_set.py index c5768f767cc..e4f4348340f 100644 --- a/msgraph_beta/generated/models/subject_set.py +++ b/msgraph_beta/generated/models/subject_set.py @@ -6,11 +6,8 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from .identity_governance.all_excluding_groups_subject_set import AllExcludingGroupsSubjectSet - from .identity_governance.all_excluding_specific_objects_subject_set import AllExcludingSpecificObjectsSubjectSet from .identity_governance.group_based_subject_set import GroupBasedSubjectSet from .identity_governance.rule_based_subject_set import RuleBasedSubjectSet - from .identity_governance.selected_objects_subject_set import SelectedObjectsSubjectSet @dataclass class SubjectSet(AdditionalDataHolder, BackedModel, Parsable): @@ -36,14 +33,6 @@ def create_from_discriminator_value(parse_node: ParseNode) -> SubjectSet: mapping_value = child_node.get_str_value() if child_node else None except AttributeError: mapping_value = None - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.allExcludingGroupsSubjectSet".casefold(): - from .identity_governance.all_excluding_groups_subject_set import AllExcludingGroupsSubjectSet - - return AllExcludingGroupsSubjectSet() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.allExcludingSpecificObjectsSubjectSet".casefold(): - from .identity_governance.all_excluding_specific_objects_subject_set import AllExcludingSpecificObjectsSubjectSet - - return AllExcludingSpecificObjectsSubjectSet() if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.groupBasedSubjectSet".casefold(): from .identity_governance.group_based_subject_set import GroupBasedSubjectSet @@ -52,10 +41,6 @@ def create_from_discriminator_value(parse_node: ParseNode) -> SubjectSet: from .identity_governance.rule_based_subject_set import RuleBasedSubjectSet return RuleBasedSubjectSet() - if mapping_value and mapping_value.casefold() == "#microsoft.graph.identityGovernance.selectedObjectsSubjectSet".casefold(): - from .identity_governance.selected_objects_subject_set import SelectedObjectsSubjectSet - - return SelectedObjectsSubjectSet() return SubjectSet() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: @@ -63,17 +48,11 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from .identity_governance.all_excluding_groups_subject_set import AllExcludingGroupsSubjectSet - from .identity_governance.all_excluding_specific_objects_subject_set import AllExcludingSpecificObjectsSubjectSet from .identity_governance.group_based_subject_set import GroupBasedSubjectSet from .identity_governance.rule_based_subject_set import RuleBasedSubjectSet - from .identity_governance.selected_objects_subject_set import SelectedObjectsSubjectSet - from .identity_governance.all_excluding_groups_subject_set import AllExcludingGroupsSubjectSet - from .identity_governance.all_excluding_specific_objects_subject_set import AllExcludingSpecificObjectsSubjectSet from .identity_governance.group_based_subject_set import GroupBasedSubjectSet from .identity_governance.rule_based_subject_set import RuleBasedSubjectSet - from .identity_governance.selected_objects_subject_set import SelectedObjectsSubjectSet fields: dict[str, Callable[[Any], None]] = { "@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()), diff --git a/msgraph_beta/generated/models/summarized_sign_in.py b/msgraph_beta/generated/models/summarized_sign_in.py index d3742cdc071..65d24526206 100644 --- a/msgraph_beta/generated/models/summarized_sign_in.py +++ b/msgraph_beta/generated/models/summarized_sign_in.py @@ -39,6 +39,8 @@ class SummarizedSignIn(Entity, Parsable): resource_display_name: Optional[str] = None # The application identifier of the resource application that the user signed in to. Supports $filter (eq). resource_id: Optional[str] = None + # The rootActorId property + root_actor_id: Optional[str] = None # The application identifier of the specific service principal instance of the application identifier used for sign-in. This field is populated when you're signing in using an application and is different than the appId property. Supports $filter (eq). service_principal_id: Optional[str] = None # The application name used for sign-in. This field is populated when you're signing in using an application. Supports $filter (eq, startswith). @@ -95,6 +97,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: "managedServiceIdentity": lambda n : setattr(self, 'managed_service_identity', n.get_object_value(ManagedIdentity)), "resourceDisplayName": lambda n : setattr(self, 'resource_display_name', n.get_str_value()), "resourceId": lambda n : setattr(self, 'resource_id', n.get_str_value()), + "rootActorId": lambda n : setattr(self, 'root_actor_id', n.get_str_value()), "servicePrincipalId": lambda n : setattr(self, 'service_principal_id', n.get_str_value()), "servicePrincipalName": lambda n : setattr(self, 'service_principal_name', n.get_str_value()), "signInCount": lambda n : setattr(self, 'sign_in_count', n.get_int_value()), @@ -126,6 +129,7 @@ def serialize(self,writer: SerializationWriter) -> None: writer.write_object_value("managedServiceIdentity", self.managed_service_identity) writer.write_str_value("resourceDisplayName", self.resource_display_name) writer.write_str_value("resourceId", self.resource_id) + writer.write_str_value("rootActorId", self.root_actor_id) writer.write_str_value("servicePrincipalId", self.service_principal_id) writer.write_str_value("servicePrincipalName", self.service_principal_name) writer.write_int_value("signInCount", self.sign_in_count) diff --git a/msgraph_beta/generated/models/admit_from_lobby_operation.py b/msgraph_beta/generated/models/tenant_activities_container.py similarity index 80% rename from msgraph_beta/generated/models/admit_from_lobby_operation.py rename to msgraph_beta/generated/models/tenant_activities_container.py index 4ce58457156..e341dfa6cb4 100644 --- a/msgraph_beta/generated/models/admit_from_lobby_operation.py +++ b/msgraph_beta/generated/models/tenant_activities_container.py @@ -5,34 +5,34 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from .comms_operation import CommsOperation + from .entity import Entity -from .comms_operation import CommsOperation +from .entity import Entity @dataclass -class AdmitFromLobbyOperation(CommsOperation, Parsable): +class TenantActivitiesContainer(Entity, Parsable): # The OdataType property odata_type: Optional[str] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> AdmitFromLobbyOperation: + def create_from_discriminator_value(parse_node: ParseNode) -> TenantActivitiesContainer: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: AdmitFromLobbyOperation + Returns: TenantActivitiesContainer """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return AdmitFromLobbyOperation() + return TenantActivitiesContainer() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from .comms_operation import CommsOperation + from .entity import Entity - from .comms_operation import CommsOperation + from .entity import Entity fields: dict[str, Callable[[Any], None]] = { } diff --git a/msgraph_beta/generated/models/tenant_data_security_and_governance.py b/msgraph_beta/generated/models/tenant_data_security_and_governance.py index 280a13975c2..72223721964 100644 --- a/msgraph_beta/generated/models/tenant_data_security_and_governance.py +++ b/msgraph_beta/generated/models/tenant_data_security_and_governance.py @@ -7,6 +7,7 @@ if TYPE_CHECKING: from .data_security_and_governance import DataSecurityAndGovernance from .policy_file import PolicyFile + from .tenant_activities_container import TenantActivitiesContainer from .tenant_protection_scope_container import TenantProtectionScopeContainer from .data_security_and_governance import DataSecurityAndGovernance @@ -15,6 +16,8 @@ class TenantDataSecurityAndGovernance(DataSecurityAndGovernance, Parsable): # The OdataType property odata_type: Optional[str] = "#microsoft.graph.tenantDataSecurityAndGovernance" + # The activities property + activities: Optional[TenantActivitiesContainer] = None # The policyFiles property policy_files: Optional[list[PolicyFile]] = None # The protectionScopes property @@ -38,13 +41,16 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ from .data_security_and_governance import DataSecurityAndGovernance from .policy_file import PolicyFile + from .tenant_activities_container import TenantActivitiesContainer from .tenant_protection_scope_container import TenantProtectionScopeContainer from .data_security_and_governance import DataSecurityAndGovernance from .policy_file import PolicyFile + from .tenant_activities_container import TenantActivitiesContainer from .tenant_protection_scope_container import TenantProtectionScopeContainer fields: dict[str, Callable[[Any], None]] = { + "activities": lambda n : setattr(self, 'activities', n.get_object_value(TenantActivitiesContainer)), "policyFiles": lambda n : setattr(self, 'policy_files', n.get_collection_of_object_values(PolicyFile)), "protectionScopes": lambda n : setattr(self, 'protection_scopes', n.get_object_value(TenantProtectionScopeContainer)), } @@ -61,6 +67,7 @@ def serialize(self,writer: SerializationWriter) -> None: if writer is None: raise TypeError("writer cannot be null.") super().serialize(writer) + writer.write_object_value("activities", self.activities) writer.write_collection_of_object_values("policyFiles", self.policy_files) writer.write_object_value("protectionScopes", self.protection_scopes) diff --git a/msgraph_beta/generated/models/tool_participant.py b/msgraph_beta/generated/models/tool_participant.py new file mode 100644 index 00000000000..7713b0ea7b4 --- /dev/null +++ b/msgraph_beta/generated/models/tool_participant.py @@ -0,0 +1,57 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .interaction_participant import InteractionParticipant + +from .interaction_participant import InteractionParticipant + +@dataclass +class ToolParticipant(InteractionParticipant, Parsable): + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.toolParticipant" + # The mcpServerId property + mcp_server_id: Optional[str] = None + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> ToolParticipant: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: ToolParticipant + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return ToolParticipant() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .interaction_participant import InteractionParticipant + + from .interaction_participant import InteractionParticipant + + fields: dict[str, Callable[[Any], None]] = { + "mcpServerId": lambda n : setattr(self, 'mcp_server_id', n.get_str_value()), + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + writer.write_str_value("mcpServerId", self.mcp_server_id) + + diff --git a/msgraph_beta/generated/models/user_participant.py b/msgraph_beta/generated/models/user_participant.py new file mode 100644 index 00000000000..88b3ff5d6ff --- /dev/null +++ b/msgraph_beta/generated/models/user_participant.py @@ -0,0 +1,53 @@ +from __future__ import annotations +from collections.abc import Callable +from dataclasses import dataclass, field +from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter +from typing import Any, Optional, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .interaction_participant import InteractionParticipant + +from .interaction_participant import InteractionParticipant + +@dataclass +class UserParticipant(InteractionParticipant, Parsable): + # The OdataType property + odata_type: Optional[str] = "#microsoft.graph.userParticipant" + + @staticmethod + def create_from_discriminator_value(parse_node: ParseNode) -> UserParticipant: + """ + Creates a new instance of the appropriate class based on discriminator value + param parse_node: The parse node to use to read the discriminator value and create the object + Returns: UserParticipant + """ + if parse_node is None: + raise TypeError("parse_node cannot be null.") + return UserParticipant() + + def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: + """ + The deserialization information for the current model + Returns: dict[str, Callable[[ParseNode], None]] + """ + from .interaction_participant import InteractionParticipant + + from .interaction_participant import InteractionParticipant + + fields: dict[str, Callable[[Any], None]] = { + } + super_fields = super().get_field_deserializers() + fields.update(super_fields) + return fields + + def serialize(self,writer: SerializationWriter) -> None: + """ + Serializes information the current object + param writer: Serialization writer to use to serialize this model + Returns: None + """ + if writer is None: + raise TypeError("writer cannot be null.") + super().serialize(writer) + + diff --git a/msgraph_beta/generated/network/network_request_builder.py b/msgraph_beta/generated/network/network_request_builder.py index a7c38ddebdc..34e1435b308 100644 --- a/msgraph_beta/generated/network/network_request_builder.py +++ b/msgraph_beta/generated/network/network_request_builder.py @@ -53,7 +53,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[NetworkR async def patch(self,body: Network, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[Network]: """ Update network - param body: Singleton for network operations on Microsoft Graph. + param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Network] """ @@ -87,7 +87,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi def to_patch_request_information(self,body: Network, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: """ Update network - param body: Singleton for network operations on Microsoft Graph. + param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ diff --git a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name/destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_get_response.py b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id/destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_get_response.py similarity index 85% rename from msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name/destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_get_response.py rename to msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id/destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_get_response.py index 9be6b251283..1016b7fd71c 100644 --- a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name/destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_get_response.py +++ b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id/destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_get_response.py @@ -11,20 +11,20 @@ from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse @dataclass -class DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse(BaseCollectionPaginationCountResponse, Parsable): +class DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse(BaseCollectionPaginationCountResponse, Parsable): # The value property value: Optional[list[Destination]] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse: + def create_from_discriminator_value(parse_node: ParseNode) -> DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse + Returns: DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse() + return DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ diff --git a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_request_builder.py b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_request_builder.py similarity index 70% rename from msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_request_builder.py rename to msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_request_builder.py index f9515ffe970..8437384a017 100644 --- a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_request_builder.py +++ b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id/microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_request_builder.py @@ -16,15 +16,15 @@ if TYPE_CHECKING: from ....models.o_data_errors.o_data_error import ODataError - from .destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_get_response import DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse + from .destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_get_response import DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse -class MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder(BaseRequestBuilder): +class MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder(BaseRequestBuilder): """ Provides operations to call the destinationReport method. """ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]], end_date_time: Optional[datetime.datetime] = None, start_date_time: Optional[datetime.datetime] = None) -> None: """ - Instantiates a new MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder and sets the default values. + Instantiates a new MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder and sets the default values. param end_date_time: Usage: endDateTime={endDateTime} param path_parameters: The raw url or the url-template parameters for the request. param request_adapter: The request adapter to use to execute the requests. @@ -34,13 +34,13 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d if isinstance(path_parameters, dict): path_parameters['endDateTime'] = end_date_time path_parameters['startDateTime'] = start_date_time - super().__init__(request_adapter, "{+baseurl}/networkAccess/reports/microsoft.graph.networkaccess.destinationReport(startDateTime={startDateTime},endDateTime={endDateTime},aiAgentId='@aiAgentId',aiAgentName='@aiAgentName'){?%24count,%24filter,%24search,%24skip,%24top,aiAgentId*,aiAgentName*}", path_parameters) + super().__init__(request_adapter, "{+baseurl}/networkAccess/reports/microsoft.graph.networkaccess.destinationReport(startDateTime={startDateTime},endDateTime={endDateTime},aiAgentId='@aiAgentId',aiAgentName='@aiAgentName',agentTypeId='@agentTypeId',agentVirtualId='@agentVirtualId'){?%24count,%24filter,%24search,%24skip,%24top,agentTypeId*,agentVirtualId*,aiAgentId*,aiAgentName*}", path_parameters) - async def get(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters]] = None) -> Optional[DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse]: + async def get(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters]] = None) -> Optional[DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse]: """ Invoke function destinationReport param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse] + Returns: Optional[DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse] """ request_info = self.to_get_request_information( request_configuration @@ -52,11 +52,11 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Microsof } if not self.request_adapter: raise Exception("Http core is null") - from .destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_get_response import DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse + from .destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_get_response import DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse - return await self.request_adapter.send_async(request_info, DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameGetResponse, error_mapping) + return await self.request_adapter.send_async(request_info, DestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdGetResponse, error_mapping) - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters]] = None) -> RequestInformation: + def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ Invoke function destinationReport param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. @@ -67,18 +67,18 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi request_info.headers.try_add("Accept", "application/json") return request_info - def with_url(self,raw_url: str) -> MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder: + def with_url(self,raw_url: str) -> MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder: """ Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. param raw_url: The raw URL to use for the request builder. - Returns: MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder + Returns: MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder """ if raw_url is None: raise TypeError("raw_url cannot be null.") - return MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder(self.request_adapter, raw_url) + return MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder(self.request_adapter, raw_url) @dataclass - class MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters(): + class MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters(): """ Invoke function destinationReport """ @@ -90,6 +90,10 @@ def get_query_parameter(self,original_name: str) -> str: """ if original_name is None: raise TypeError("original_name cannot be null.") + if original_name == "agent_type_id": + return "agentTypeId" + if original_name == "agent_virtual_id": + return "agentVirtualId" if original_name == "ai_agent_id": return "aiAgentId" if original_name == "ai_agent_name": @@ -106,6 +110,12 @@ def get_query_parameter(self,original_name: str) -> str: return "%24top" return original_name + # Usage: agentTypeId='@agentTypeId' + agent_type_id: Optional[str] = None + + # Usage: agentVirtualId='@agentVirtualId' + agent_virtual_id: Optional[str] = None + # Usage: aiAgentId='@aiAgentId' ai_agent_id: Optional[str] = None @@ -129,7 +139,7 @@ def get_query_parameter(self,original_name: str) -> str: @dataclass - class MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetRequestConfiguration(RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilderGetQueryParameters]): + class MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetRequestConfiguration(RequestConfiguration[MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilderGetQueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ diff --git a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_88652905/device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_c_f4f09686.py b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_f04bed07/device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_i_75c0cac3.py similarity index 83% rename from msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_88652905/device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_c_f4f09686.py rename to msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_f04bed07/device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_i_75c0cac3.py index 73e33ec4137..ad2b04df959 100644 --- a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_88652905/device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_c_f4f09686.py +++ b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_f04bed07/device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_i_75c0cac3.py @@ -11,23 +11,23 @@ from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse @dataclass -class DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686(BaseCollectionPaginationCountResponse, Parsable): +class DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3(BaseCollectionPaginationCountResponse, Parsable): """ - Original name: DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlGetResponse + Original name: DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlGetResponse """ # The value property value: Optional[list[Device]] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686: + def create_from_discriminator_value(parse_node: ParseNode) -> DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686 + Returns: DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3 """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686() + return DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ diff --git a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_88652905/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_06594dbd.py b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_f04bed07/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_8b18324c.py similarity index 75% rename from msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_88652905/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_06594dbd.py rename to msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_f04bed07/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_8b18324c.py index fc5203a80fa..bfd7b77d9bb 100644 --- a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_88652905/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_06594dbd.py +++ b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_f04bed07/microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_8b18324c.py @@ -16,15 +16,15 @@ if TYPE_CHECKING: from ....models.o_data_errors.o_data_error import ODataError - from .device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_c_f4f09686 import DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686 + from .device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_i_75c0cac3 import DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3 -class MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd(BaseRequestBuilder): +class MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c(BaseRequestBuilder): """ - Provides operations to call the deviceReport method. Original name: MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilder + Provides operations to call the deviceReport method. Original name: MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilder """ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]], end_date_time: Optional[datetime.datetime] = None, start_date_time: Optional[datetime.datetime] = None) -> None: """ - Instantiates a new MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd and sets the default values. + Instantiates a new MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c and sets the default values. param end_date_time: Usage: endDateTime={endDateTime} param path_parameters: The raw url or the url-template parameters for the request. param request_adapter: The request adapter to use to execute the requests. @@ -34,13 +34,13 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d if isinstance(path_parameters, dict): path_parameters['endDateTime'] = end_date_time path_parameters['startDateTime'] = start_date_time - super().__init__(request_adapter, "{+baseurl}/networkAccess/reports/microsoft.graph.networkaccess.deviceReport(startDateTime={startDateTime},endDateTime={endDateTime},discoveredApplicationSegmentId='@discoveredApplicationSegmentId',applicationId='@applicationId',aiAgentId='@aiAgentId',aiAgentName='@aiAgentName',cloudApplicationName='@cloudApplicationName',destinationUrl='@destinationUrl'){?%24count,%24filter,%24search,%24skip,%24top,aiAgentId*,aiAgentName*,applicationId*,cloudApplicationName*,destinationUrl*,discoveredApplicationSegmentId*}", path_parameters) + super().__init__(request_adapter, "{+baseurl}/networkAccess/reports/microsoft.graph.networkaccess.deviceReport(startDateTime={startDateTime},endDateTime={endDateTime},discoveredApplicationSegmentId='@discoveredApplicationSegmentId',applicationId='@applicationId',aiAgentId='@aiAgentId',aiAgentName='@aiAgentName',agentTypeId='@agentTypeId',agentVirtualId='@agentVirtualId',cloudApplicationName='@cloudApplicationName',destinationUrl='@destinationUrl'){?%24count,%24filter,%24search,%24skip,%24top,agentTypeId*,agentVirtualId*,aiAgentId*,aiAgentName*,applicationId*,cloudApplicationName*,destinationUrl*,discoveredApplicationSegmentId*}", path_parameters) - async def get(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]] = None) -> Optional[DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686]: + async def get(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]] = None) -> Optional[DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3]: """ Invoke function deviceReport param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686] + Returns: Optional[DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3] """ request_info = self.to_get_request_information( request_configuration @@ -52,11 +52,11 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Microsof } if not self.request_adapter: raise Exception("Http core is null") - from .device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_c_f4f09686 import DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686 + from .device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_i_75c0cac3 import DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3 - return await self.request_adapter.send_async(request_info, DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameC_f4f09686, error_mapping) + return await self.request_adapter.send_async(request_info, DeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeI_75c0cac3, error_mapping) - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]] = None) -> RequestInformation: + def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ Invoke function deviceReport param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. @@ -67,18 +67,18 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi request_info.headers.try_add("Accept", "application/json") return request_info - def with_url(self,raw_url: str) -> MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd: + def with_url(self,raw_url: str) -> MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c: """ Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. param raw_url: The raw URL to use for the request builder. - Returns: MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd + Returns: MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c """ if raw_url is None: raise TypeError("raw_url cannot be null.") - return MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd(self.request_adapter, raw_url) + return MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c(self.request_adapter, raw_url) @dataclass - class MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters(): + class MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters(): """ Invoke function deviceReport """ @@ -90,6 +90,10 @@ def get_query_parameter(self,original_name: str) -> str: """ if original_name is None: raise TypeError("original_name cannot be null.") + if original_name == "agent_type_id": + return "agentTypeId" + if original_name == "agent_virtual_id": + return "agentVirtualId" if original_name == "ai_agent_id": return "aiAgentId" if original_name == "ai_agent_name": @@ -114,6 +118,12 @@ def get_query_parameter(self,original_name: str) -> str: return "%24top" return original_name + # Usage: agentTypeId='@agentTypeId' + agent_type_id: Optional[str] = None + + # Usage: agentVirtualId='@agentVirtualId' + agent_virtual_id: Optional[str] = None + # Usage: aiAgentId='@aiAgentId' ai_agent_id: Optional[str] = None @@ -149,7 +159,7 @@ def get_query_parameter(self,original_name: str) -> str: @dataclass - class MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetRequestConfiguration(RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]): + class MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetRequestConfiguration(RequestConfiguration[MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ diff --git a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_b974b70d/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_f71a8761.py b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_951cee79/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_721fcbd3.py similarity index 73% rename from msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_b974b70d/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_f71a8761.py rename to msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_951cee79/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_721fcbd3.py index ff0e953e69d..18634d49d9a 100644 --- a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_b974b70d/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_f71a8761.py +++ b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_951cee79/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_721fcbd3.py @@ -16,15 +16,15 @@ if TYPE_CHECKING: from ....models.o_data_errors.o_data_error import ODataError - from .user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_clo_98f2d100 import UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100 + from .user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_a_bd619981 import UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981 -class MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761(BaseRequestBuilder): +class MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3(BaseRequestBuilder): """ - Provides operations to call the userReport method. Original name: MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilder + Provides operations to call the userReport method. Original name: MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilder """ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]], end_date_time: Optional[datetime.datetime] = None, start_date_time: Optional[datetime.datetime] = None) -> None: """ - Instantiates a new MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761 and sets the default values. + Instantiates a new MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3 and sets the default values. param end_date_time: Usage: endDateTime={endDateTime} param path_parameters: The raw url or the url-template parameters for the request. param request_adapter: The request adapter to use to execute the requests. @@ -34,13 +34,13 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d if isinstance(path_parameters, dict): path_parameters['endDateTime'] = end_date_time path_parameters['startDateTime'] = start_date_time - super().__init__(request_adapter, "{+baseurl}/networkAccess/reports/microsoft.graph.networkaccess.userReport(startDateTime={startDateTime},endDateTime={endDateTime},discoveredApplicationSegmentId='@discoveredApplicationSegmentId',applicationId='@applicationId',aiAgentId='@aiAgentId',aiAgentName='@aiAgentName',cloudApplicationName='@cloudApplicationName',destinationUrl='@destinationUrl'){?%24count,%24filter,%24search,%24skip,%24top,aiAgentId*,aiAgentName*,applicationId*,cloudApplicationName*,destinationUrl*,discoveredApplicationSegmentId*}", path_parameters) + super().__init__(request_adapter, "{+baseurl}/networkAccess/reports/microsoft.graph.networkaccess.userReport(startDateTime={startDateTime},endDateTime={endDateTime},discoveredApplicationSegmentId='@discoveredApplicationSegmentId',applicationId='@applicationId',aiAgentId='@aiAgentId',aiAgentName='@aiAgentName',agentTypeId='@agentTypeId',agentVirtualId='@agentVirtualId',cloudApplicationName='@cloudApplicationName',destinationUrl='@destinationUrl'){?%24count,%24filter,%24search,%24skip,%24top,agentTypeId*,agentVirtualId*,aiAgentId*,aiAgentName*,applicationId*,cloudApplicationName*,destinationUrl*,discoveredApplicationSegmentId*}", path_parameters) - async def get(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]] = None) -> Optional[UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100]: + async def get(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]] = None) -> Optional[UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981]: """ Invoke function userReport param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100] + Returns: Optional[UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981] """ request_info = self.to_get_request_information( request_configuration @@ -52,11 +52,11 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Microsof } if not self.request_adapter: raise Exception("Http core is null") - from .user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_clo_98f2d100 import UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100 + from .user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_a_bd619981 import UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981 - return await self.request_adapter.send_async(request_info, UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100, error_mapping) + return await self.request_adapter.send_async(request_info, UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981, error_mapping) - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]] = None) -> RequestInformation: + def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ Invoke function userReport param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. @@ -67,18 +67,18 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi request_info.headers.try_add("Accept", "application/json") return request_info - def with_url(self,raw_url: str) -> MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761: + def with_url(self,raw_url: str) -> MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3: """ Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. param raw_url: The raw URL to use for the request builder. - Returns: MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761 + Returns: MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3 """ if raw_url is None: raise TypeError("raw_url cannot be null.") - return MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761(self.request_adapter, raw_url) + return MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3(self.request_adapter, raw_url) @dataclass - class MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters(): + class MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters(): """ Invoke function userReport """ @@ -90,6 +90,10 @@ def get_query_parameter(self,original_name: str) -> str: """ if original_name is None: raise TypeError("original_name cannot be null.") + if original_name == "agent_type_id": + return "agentTypeId" + if original_name == "agent_virtual_id": + return "agentVirtualId" if original_name == "ai_agent_id": return "aiAgentId" if original_name == "ai_agent_name": @@ -114,6 +118,12 @@ def get_query_parameter(self,original_name: str) -> str: return "%24top" return original_name + # Usage: agentTypeId='@agentTypeId' + agent_type_id: Optional[str] = None + + # Usage: agentVirtualId='@agentVirtualId' + agent_virtual_id: Optional[str] = None + # Usage: aiAgentId='@aiAgentId' ai_agent_id: Optional[str] = None @@ -149,7 +159,7 @@ def get_query_parameter(self,original_name: str) -> str: @dataclass - class MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetRequestConfiguration(RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]): + class MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetRequestConfiguration(RequestConfiguration[MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlRequestBuilderGetQueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ diff --git a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_b974b70d/user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_clo_98f2d100.py b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_951cee79/user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_a_bd619981.py similarity index 83% rename from msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_b974b70d/user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_clo_98f2d100.py rename to msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_951cee79/user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_a_bd619981.py index be91af76d83..444ee7902ff 100644 --- a/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_b974b70d/user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_clo_98f2d100.py +++ b/msgraph_beta/generated/network_access/reports/microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_951cee79/user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_a_bd619981.py @@ -11,23 +11,23 @@ from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse @dataclass -class UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100(BaseCollectionPaginationCountResponse, Parsable): +class UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981(BaseCollectionPaginationCountResponse, Parsable): """ - Original name: UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlGetResponse + Original name: UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdCloudApplicationNameCloudApplicationNameDestinationUrlDestinationUrlGetResponse """ # The value property value: Optional[list[User]] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100: + def create_from_discriminator_value(parse_node: ParseNode) -> UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100 + Returns: UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981 """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameCloudApplicationNameClo_98f2d100() + return UserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdA_bd619981() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ diff --git a/msgraph_beta/generated/network_access/reports/reports_request_builder.py b/msgraph_beta/generated/network_access/reports/reports_request_builder.py index 94a0154bfe2..e3732e96bba 100644 --- a/msgraph_beta/generated/network_access/reports/reports_request_builder.py +++ b/msgraph_beta/generated/network_access/reports/reports_request_builder.py @@ -18,8 +18,8 @@ from ...models.networkaccess.reports import Reports from ...models.o_data_errors.o_data_error import ODataError from .microsoft_graph_networkaccess_cross_tenant_access_report_with_start_date_time_with_end_date_time.microsoft_graph_networkaccess_cross_tenant_access_report_with_start_date_time_with_end_date_time_request_builder import MicrosoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTimeRequestBuilder - from .microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name.microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_request_builder import MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder - from .microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_88652905.microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_06594dbd import MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd + from .microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id.microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_request_builder import MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder + from .microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_f04bed07.microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_8b18324c import MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c from .microsoft_graph_networkaccess_entities_summaries_with_start_date_time_with_end_date_time.microsoft_graph_networkaccess_entities_summaries_with_start_date_time_with_end_date_time_request_builder import MicrosoftGraphNetworkaccessEntitiesSummariesWithStartDateTimeWithEndDateTimeRequestBuilder from .microsoft_graph_networkaccess_get_application_usage_analytics_with_start_date_time_with_end_date_time_with_aggregated_by.microsoft_graph_networkaccess_get_application_usage_analytics_with_start_date_time_with_end_date_time_with_aggregated_by_request_builder import MicrosoftGraphNetworkaccessGetApplicationUsageAnalyticsWithStartDateTimeWithEndDateTimeWithAggregatedByRequestBuilder from .microsoft_graph_networkaccess_get_cloud_application_report_with_start_date_time_with_end_date_timeuser_id_user_id.microsoft_graph_networkaccess_get_cloud_application_report_with_start_date_time_with_end_date_timeuser_id_user_id_request_builder import MicrosoftGraphNetworkaccessGetCloudApplicationReportWithStartDateTimeWithEndDateTimeuserIdUserIdRequestBuilder @@ -31,7 +31,7 @@ from .microsoft_graph_networkaccess_get_enterprise_application_report_with_start_date_time_with_end_date_timeuser_id_user_id.microsoft_graph_networkaccess_get_enterprise_application_report_with_start_date_time_with_end_date_timeuser_id_user_id_request_builder import MicrosoftGraphNetworkaccessGetEnterpriseApplicationReportWithStartDateTimeWithEndDateTimeuserIdUserIdRequestBuilder from .microsoft_graph_networkaccess_transaction_summaries_with_start_date_time_with_end_date_time.microsoft_graph_networkaccess_transaction_summaries_with_start_date_time_with_end_date_time_request_builder import MicrosoftGraphNetworkaccessTransactionSummariesWithStartDateTimeWithEndDateTimeRequestBuilder from .microsoft_graph_networkaccess_usage_profiling_with_start_date_time_with_end_date_time_with_aggregated_bydiscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_44b51529.microsoft_graph_networkaccess_usage_profiling_with_start_date_time_with_end_date_time_with_aggregated_bydiscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_4a7f983e import MicrosoftGraphNetworkaccessUsageProfilingWithStartDateTimeWithEndDateTimeWithAggregatedBydiscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgent_4a7f983e - from .microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_b974b70d.microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_f71a8761 import MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761 + from .microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_951cee79.microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_721fcbd3 import MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3 from .microsoft_graph_networkaccess_web_category_report_with_start_date_time_with_end_date_time.microsoft_graph_networkaccess_web_category_report_with_start_date_time_with_end_date_time_request_builder import MicrosoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTimeRequestBuilder class ReportsRequestBuilder(BaseRequestBuilder): @@ -100,35 +100,35 @@ def microsoft_graph_networkaccess_cross_tenant_access_report_with_start_date_tim return MicrosoftGraphNetworkaccessCrossTenantAccessReportWithStartDateTimeWithEndDateTimeRequestBuilder(self.request_adapter, self.path_parameters, end_date_time, start_date_time) - def microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name(self,end_date_time: datetime.datetime, start_date_time: datetime.datetime) -> MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder: + def microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id(self,end_date_time: datetime.datetime, start_date_time: datetime.datetime) -> MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder: """ Provides operations to call the destinationReport method. param end_date_time: Usage: endDateTime={endDateTime} param start_date_time: Usage: startDateTime={startDateTime} - Returns: MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder + Returns: MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder """ if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: raise TypeError("start_date_time cannot be null.") - from .microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name.microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_request_builder import MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder + from .microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id.microsoft_graph_networkaccess_destination_report_with_start_date_time_with_end_date_timeai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_request_builder import MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder - return MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameRequestBuilder(self.request_adapter, self.path_parameters, end_date_time, start_date_time) + return MicrosoftGraphNetworkaccessDestinationReportWithStartDateTimeWithEndDateTimeaiAgentIdAiAgentIdAiAgentNameAiAgentNameAgentTypeIdAgentTypeIdAgentVirtualIdAgentVirtualIdRequestBuilder(self.request_adapter, self.path_parameters, end_date_time, start_date_time) - def microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_cloud_application_name_destination_url_destination_url(self,end_date_time: datetime.datetime, start_date_time: datetime.datetime) -> MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd: + def microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_cloud_application_name_cloud_application_name_destination_url_destination_url(self,end_date_time: datetime.datetime, start_date_time: datetime.datetime) -> MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c: """ Provides operations to call the deviceReport method. param end_date_time: Usage: endDateTime={endDateTime} param start_date_time: Usage: startDateTime={startDateTime} - Returns: MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd + Returns: MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c """ if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: raise TypeError("start_date_time cannot be null.") - from .microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_88652905.microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_06594dbd import MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd + from .microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_f04bed07.microsoft_graph_networkaccess_device_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_age_8b18324c import MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c - return MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_06594dbd(self.request_adapter, self.path_parameters, end_date_time, start_date_time) + return MicrosoftGraphNetworkaccessDeviceReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAge_8b18324c(self.request_adapter, self.path_parameters, end_date_time, start_date_time) def microsoft_graph_networkaccess_entities_summaries_with_start_date_time_with_end_date_time(self,end_date_time: datetime.datetime, start_date_time: datetime.datetime) -> MicrosoftGraphNetworkaccessEntitiesSummariesWithStartDateTimeWithEndDateTimeRequestBuilder: """ @@ -310,20 +310,20 @@ def microsoft_graph_networkaccess_usage_profiling_with_start_date_time_with_end_ return MicrosoftGraphNetworkaccessUsageProfilingWithStartDateTimeWithEndDateTimeWithAggregatedBydiscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgent_4a7f983e(self.request_adapter, self.path_parameters, aggregated_by, end_date_time, start_date_time) - def microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_cloud_application_name_cloud_application_name_destination_url_destination_url(self,end_date_time: datetime.datetime, start_date_time: datetime.datetime) -> MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761: + def microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_name_agent_type_id_agent_type_id_agent_virtual_id_agent_virtual_id_cloud_application_name_cloud_application_name_destination_url_destination_url(self,end_date_time: datetime.datetime, start_date_time: datetime.datetime) -> MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3: """ Provides operations to call the userReport method. param end_date_time: Usage: endDateTime={endDateTime} param start_date_time: Usage: startDateTime={startDateTime} - Returns: MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761 + Returns: MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3 """ if end_date_time is None: raise TypeError("end_date_time cannot be null.") if start_date_time is None: raise TypeError("start_date_time cannot be null.") - from .microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_b974b70d.microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_f71a8761 import MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761 + from .microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_951cee79.microsoft_graph_networkaccess_user_report_with_start_date_time_with_end_date_timediscovered_application_segment_id_discovered_application_segment_id_application_id_application_id_ai_agent_id_ai_agent_id_ai_agent_name_ai_agent_721fcbd3 import MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3 - return MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_f71a8761(self.request_adapter, self.path_parameters, end_date_time, start_date_time) + return MicrosoftGraphNetworkaccessUserReportWithStartDateTimeWithEndDateTimediscoveredApplicationSegmentIdDiscoveredApplicationSegmentIdApplicationIdApplicationIdAiAgentIdAiAgentIdAiAgentNameAiAgent_721fcbd3(self.request_adapter, self.path_parameters, end_date_time, start_date_time) def microsoft_graph_networkaccess_web_category_report_with_start_date_time_with_end_date_time(self,end_date_time: datetime.datetime, start_date_time: datetime.datetime) -> MicrosoftGraphNetworkaccessWebCategoryReportWithStartDateTimeWithEndDateTimeRequestBuilder: """ diff --git a/msgraph_beta/generated/service_principals/item/lifecycle/lifecycle_request_builder.py b/msgraph_beta/generated/security/data_security_and_governance/activities/activities_request_builder.py similarity index 61% rename from msgraph_beta/generated/service_principals/item/lifecycle/lifecycle_request_builder.py rename to msgraph_beta/generated/security/data_security_and_governance/activities/activities_request_builder.py index e062728f68c..02d481afde9 100644 --- a/msgraph_beta/generated/service_principals/item/lifecycle/lifecycle_request_builder.py +++ b/msgraph_beta/generated/security/data_security_and_governance/activities/activities_request_builder.py @@ -14,31 +14,28 @@ from warnings import warn if TYPE_CHECKING: - from ....models.identity_governance.identity_lifecycle import IdentityLifecycle from ....models.o_data_errors.o_data_error import ODataError - from .compliance_issues.compliance_issues_request_builder import ComplianceIssuesRequestBuilder - from .effective_governing_policy.effective_governing_policy_request_builder import EffectiveGoverningPolicyRequestBuilder + from ....models.tenant_activities_container import TenantActivitiesContainer -class LifecycleRequestBuilder(BaseRequestBuilder): +class ActivitiesRequestBuilder(BaseRequestBuilder): """ - Provides operations to manage the lifecycle property of the microsoft.graph.servicePrincipal entity. + Provides operations to manage the activities property of the microsoft.graph.tenantDataSecurityAndGovernance entity. """ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: """ - Instantiates a new LifecycleRequestBuilder and sets the default values. + Instantiates a new ActivitiesRequestBuilder and sets the default values. param path_parameters: The raw url or the url-template parameters for the request. param request_adapter: The request adapter to use to execute the requests. Returns: None """ - super().__init__(request_adapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/lifecycle{?%24expand,%24select}", path_parameters) + super().__init__(request_adapter, "{+baseurl}/security/dataSecurityAndGovernance/activities{?%24expand,%24select}", path_parameters) async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None: """ - Delete navigation property lifecycle for servicePrincipals + Delete navigation property activities for security param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -51,13 +48,12 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query raise Exception("Http core is null") return await self.request_adapter.send_no_response_content_async(request_info, error_mapping) - async def get(self,request_configuration: Optional[RequestConfiguration[LifecycleRequestBuilderGetQueryParameters]] = None) -> Optional[IdentityLifecycle]: + async def get(self,request_configuration: Optional[RequestConfiguration[ActivitiesRequestBuilderGetQueryParameters]] = None) -> Optional[TenantActivitiesContainer]: """ - Get lifecycle from servicePrincipals + Get activities from security param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[IdentityLifecycle] + Returns: Optional[TenantActivitiesContainer] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -68,18 +64,17 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Lifecycl } if not self.request_adapter: raise Exception("Http core is null") - from ....models.identity_governance.identity_lifecycle import IdentityLifecycle + from ....models.tenant_activities_container import TenantActivitiesContainer - return await self.request_adapter.send_async(request_info, IdentityLifecycle, error_mapping) + return await self.request_adapter.send_async(request_info, TenantActivitiesContainer, error_mapping) - async def patch(self,body: IdentityLifecycle, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[IdentityLifecycle]: + async def patch(self,body: TenantActivitiesContainer, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[TenantActivitiesContainer]: """ - Update the navigation property lifecycle in servicePrincipals + Update the navigation property activities in security param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[IdentityLifecycle] + Returns: Optional[TenantActivitiesContainer] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -92,42 +87,39 @@ async def patch(self,body: IdentityLifecycle, request_configuration: Optional[Re } if not self.request_adapter: raise Exception("Http core is null") - from ....models.identity_governance.identity_lifecycle import IdentityLifecycle + from ....models.tenant_activities_container import TenantActivitiesContainer - return await self.request_adapter.send_async(request_info, IdentityLifecycle, error_mapping) + return await self.request_adapter.send_async(request_info, TenantActivitiesContainer, error_mapping) def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: """ - Delete navigation property lifecycle for servicePrincipals + Delete navigation property activities for security param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") return request_info - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[LifecycleRequestBuilderGetQueryParameters]] = None) -> RequestInformation: + def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ActivitiesRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ - Get lifecycle from servicePrincipals + Get activities from security param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") return request_info - def to_patch_request_information(self,body: IdentityLifecycle, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: + def to_patch_request_information(self,body: TenantActivitiesContainer, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: """ - Update the navigation property lifecycle in servicePrincipals + Update the navigation property activities in security param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -136,46 +128,27 @@ def to_patch_request_information(self,body: IdentityLifecycle, request_configura request_info.set_content_from_parsable(self.request_adapter, "application/json", body) return request_info - def with_url(self,raw_url: str) -> LifecycleRequestBuilder: + def with_url(self,raw_url: str) -> ActivitiesRequestBuilder: """ Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. param raw_url: The raw URL to use for the request builder. - Returns: LifecycleRequestBuilder + Returns: ActivitiesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") - return LifecycleRequestBuilder(self.request_adapter, raw_url) - - @property - def compliance_issues(self) -> ComplianceIssuesRequestBuilder: - """ - Provides operations to manage the complianceIssues property of the microsoft.graph.identityGovernance.identityLifecycle entity. - """ - from .compliance_issues.compliance_issues_request_builder import ComplianceIssuesRequestBuilder - - return ComplianceIssuesRequestBuilder(self.request_adapter, self.path_parameters) - - @property - def effective_governing_policy(self) -> EffectiveGoverningPolicyRequestBuilder: - """ - Provides operations to manage the effectiveGoverningPolicy property of the microsoft.graph.identityGovernance.identityLifecycle entity. - """ - from .effective_governing_policy.effective_governing_policy_request_builder import EffectiveGoverningPolicyRequestBuilder - - return EffectiveGoverningPolicyRequestBuilder(self.request_adapter, self.path_parameters) + return ActivitiesRequestBuilder(self.request_adapter, raw_url) @dataclass - class LifecycleRequestBuilderDeleteRequestConfiguration(RequestConfiguration[QueryParameters]): + class ActivitiesRequestBuilderDeleteRequestConfiguration(RequestConfiguration[QueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) @dataclass - class LifecycleRequestBuilderGetQueryParameters(): + class ActivitiesRequestBuilderGetQueryParameters(): """ - Get lifecycle from servicePrincipals + Get activities from security """ def get_query_parameter(self,original_name: str) -> str: """ @@ -199,14 +172,14 @@ def get_query_parameter(self,original_name: str) -> str: @dataclass - class LifecycleRequestBuilderGetRequestConfiguration(RequestConfiguration[LifecycleRequestBuilderGetQueryParameters]): + class ActivitiesRequestBuilderGetRequestConfiguration(RequestConfiguration[ActivitiesRequestBuilderGetQueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) @dataclass - class LifecycleRequestBuilderPatchRequestConfiguration(RequestConfiguration[QueryParameters]): + class ActivitiesRequestBuilderPatchRequestConfiguration(RequestConfiguration[QueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ diff --git a/msgraph_beta/generated/security/data_security_and_governance/data_security_and_governance_request_builder.py b/msgraph_beta/generated/security/data_security_and_governance/data_security_and_governance_request_builder.py index d76b915d364..a57939dfea0 100644 --- a/msgraph_beta/generated/security/data_security_and_governance/data_security_and_governance_request_builder.py +++ b/msgraph_beta/generated/security/data_security_and_governance/data_security_and_governance_request_builder.py @@ -16,6 +16,7 @@ if TYPE_CHECKING: from ...models.o_data_errors.o_data_error import ODataError from ...models.tenant_data_security_and_governance import TenantDataSecurityAndGovernance + from .activities.activities_request_builder import ActivitiesRequestBuilder from .policy_files.policy_files_request_builder import PolicyFilesRequestBuilder from .process_content.process_content_request_builder import ProcessContentRequestBuilder from .process_content_async.process_content_async_request_builder import ProcessContentAsyncRequestBuilder @@ -143,6 +144,15 @@ def with_url(self,raw_url: str) -> DataSecurityAndGovernanceRequestBuilder: raise TypeError("raw_url cannot be null.") return DataSecurityAndGovernanceRequestBuilder(self.request_adapter, raw_url) + @property + def activities(self) -> ActivitiesRequestBuilder: + """ + Provides operations to manage the activities property of the microsoft.graph.tenantDataSecurityAndGovernance entity. + """ + from .activities.activities_request_builder import ActivitiesRequestBuilder + + return ActivitiesRequestBuilder(self.request_adapter, self.path_parameters) + @property def policy_files(self) -> PolicyFilesRequestBuilder: """ diff --git a/msgraph_beta/generated/security/data_security_and_governance/process_content/process_content_request_builder.py b/msgraph_beta/generated/security/data_security_and_governance/process_content/process_content_request_builder.py index 213bd40a378..64f3b244db5 100644 --- a/msgraph_beta/generated/security/data_security_and_governance/process_content/process_content_request_builder.py +++ b/msgraph_beta/generated/security/data_security_and_governance/process_content/process_content_request_builder.py @@ -33,10 +33,11 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d async def post(self,body: ProcessContentPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[ProcessContentResponse]: """ - Invoke action processContent + Evaluate content against Microsoft Purview Data Loss Prevention (DLP) policies and return the policy actions that apply to the supplied content. Use this API when an application needs to evaluate content before or during data movement. In Agent-to-Tool (A2T) scenarios, the agent runtime calls this API before invoking an external tool to determine whether the content should be allowed, blocked, or audited according to Microsoft Purview policies. For A2T scenarios: The response contains any applicable policy actions together with the protection scope state, allowing callers to determine whether cached protection scopes should be refreshed. param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ProcessContentResponse] + Find more info here: https://learn.microsoft.com/graph/api/tenantdatasecurityandgovernance-processcontent?view=graph-rest-beta """ if body is None: raise TypeError("body cannot be null.") @@ -56,7 +57,7 @@ async def post(self,body: ProcessContentPostRequestBody, request_configuration: def to_post_request_information(self,body: ProcessContentPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: """ - Invoke action processContent + Evaluate content against Microsoft Purview Data Loss Prevention (DLP) policies and return the policy actions that apply to the supplied content. Use this API when an application needs to evaluate content before or during data movement. In Agent-to-Tool (A2T) scenarios, the agent runtime calls this API before invoking an external tool to determine whether the content should be allowed, blocked, or audited according to Microsoft Purview policies. For A2T scenarios: The response contains any applicable policy actions together with the protection scope state, allowing callers to determine whether cached protection scopes should be refreshed. param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation diff --git a/msgraph_beta/generated/security/security_request_builder.py b/msgraph_beta/generated/security/security_request_builder.py index acb44a708aa..608e0e8f123 100644 --- a/msgraph_beta/generated/security/security_request_builder.py +++ b/msgraph_beta/generated/security/security_request_builder.py @@ -102,7 +102,7 @@ def microsoft_graph_security_get_run_hunting_query_with_querytimespan_timespan_w async def patch(self,body: Security, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[Security]: """ Update security - param body: Security singleton providing access to audit log resources. + param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Security] """ @@ -136,7 +136,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi def to_patch_request_information(self,body: Security, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: """ Update security - param body: Security singleton providing access to audit log resources. + param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ diff --git a/msgraph_beta/generated/service_principals/count/count_request_builder.py b/msgraph_beta/generated/service_principals/count/count_request_builder.py index 4ed27e1d640..0a33c5d3d3e 100644 --- a/msgraph_beta/generated/service_principals/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/delta/delta_request_builder.py b/msgraph_beta/generated/service_principals/delta/delta_request_builder.py index fefa28b91f4..210d9d50d8e 100644 --- a/msgraph_beta/generated/service_principals/delta/delta_request_builder.py +++ b/msgraph_beta/generated/service_principals/delta/delta_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DeltaReq Returns: Optional[DeltaGetResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> DeltaRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DeltaRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DeltaRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/get_by_ids/get_by_ids_request_builder.py b/msgraph_beta/generated/service_principals/get_by_ids/get_by_ids_request_builder.py index e56fd34db38..77b6e8ff9e0 100644 --- a/msgraph_beta/generated/service_principals/get_by_ids/get_by_ids_request_builder.py +++ b/msgraph_beta/generated/service_principals/get_by_ids/get_by_ids_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: GetByIdsPostRequestBody, request_configuration: Option Returns: Optional[GetByIdsPostResponse] Find more info here: https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: GetByIdsPostRequestBody, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> GetByIdsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GetByIdsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetByIdsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/get_user_owned_objects/get_user_owned_objects_request_builder.py b/msgraph_beta/generated/service_principals/get_user_owned_objects/get_user_owned_objects_request_builder.py index a5efd7f33f8..a67592f5b12 100644 --- a/msgraph_beta/generated/service_principals/get_user_owned_objects/get_user_owned_objects_request_builder.py +++ b/msgraph_beta/generated/service_principals/get_user_owned_objects/get_user_owned_objects_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: GetUserOwnedObjectsPostRequestBody, request_configurat Returns: Optional[DirectoryObject] Find more info here: https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: GetUserOwnedObjectsPostRequestBody, r param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> GetUserOwnedObjectsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GetUserOwnedObjectsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetUserOwnedObjectsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/add_token_signing_certificate/add_token_signing_certificate_request_builder.py b/msgraph_beta/generated/service_principals/item/add_token_signing_certificate/add_token_signing_certificate_request_builder.py index 6504741ac31..b1359d4059d 100644 --- a/msgraph_beta/generated/service_principals/item/add_token_signing_certificate/add_token_signing_certificate_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/add_token_signing_certificate/add_token_signing_certificate_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: AddTokenSigningCertificatePostRequestBody, request_con Returns: Optional[SelfSignedCertificate] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: AddTokenSigningCertificatePostRequest param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> AddTokenSigningCertificateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AddTokenSigningCertificateRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AddTokenSigningCertificateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/app_management_policies/app_management_policies_request_builder.py b/msgraph_beta/generated/service_principals/item/app_management_policies/app_management_policies_request_builder.py index 20299a9aeb2..33b277dd7f9 100644 --- a/msgraph_beta/generated/service_principals/item/app_management_policies/app_management_policies_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/app_management_policies/app_management_policies_request_builder.py @@ -38,7 +38,6 @@ def by_app_management_policy_id(self,app_management_policy_id: str) -> AppManage param app_management_policy_id: The unique identifier of appManagementPolicy Returns: AppManagementPolicyItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if app_management_policy_id is None: raise TypeError("app_management_policy_id cannot be null.") from .item.app_management_policy_item_request_builder import AppManagementPolicyItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AppManag param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppManagementPolicyCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> AppManagementPoliciesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AppManagementPoliciesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AppManagementPoliciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/app_management_policies/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/app_management_policies/count/count_request_builder.py index 913773f715c..9f272228437 100644 --- a/msgraph_beta/generated/service_principals/item/app_management_policies/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/app_management_policies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/app_management_policies/item/app_management_policy_item_request_builder.py b/msgraph_beta/generated/service_principals/item/app_management_policies/item/app_management_policy_item_request_builder.py index 44ca96fab63..ddcd799f46d 100644 --- a/msgraph_beta/generated/service_principals/item/app_management_policies/item/app_management_policy_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/app_management_policies/item/app_management_policy_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AppManag param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppManagementPolicy] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> AppManagementPolicyItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AppManagementPolicyItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AppManagementPolicyItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/app_role_assigned_to/app_role_assigned_to_request_builder.py b/msgraph_beta/generated/service_principals/item/app_role_assigned_to/app_role_assigned_to_request_builder.py index 60ca2fe595c..f5dea7d0503 100644 --- a/msgraph_beta/generated/service_principals/item/app_role_assigned_to/app_role_assigned_to_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/app_role_assigned_to/app_role_assigned_to_request_builder.py @@ -39,7 +39,6 @@ def by_app_role_assignment_id(self,app_role_assignment_id: str) -> AppRoleAssign param app_role_assignment_id: The unique identifier of appRoleAssignment Returns: AppRoleAssignmentItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if app_role_assignment_id is None: raise TypeError("app_role_assignment_id cannot be null.") from .item.app_role_assignment_item_request_builder import AppRoleAssignmentItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AppRoleA Returns: Optional[AppRoleAssignmentCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignedto?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: AppRoleAssignment, request_configuration: Optional[Req Returns: Optional[AppRoleAssignment] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignedto?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: AppRoleAssignment, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> AppRoleAssignedToRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AppRoleAssignedToRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AppRoleAssignedToRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/app_role_assigned_to/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/app_role_assigned_to/count/count_request_builder.py index 979bdda7262..5b2b3f22139 100644 --- a/msgraph_beta/generated/service_principals/item/app_role_assigned_to/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/app_role_assigned_to/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/app_role_assigned_to/item/app_role_assignment_item_request_builder.py b/msgraph_beta/generated/service_principals/item/app_role_assigned_to/item/app_role_assignment_item_request_builder.py index 08f9ff4a6bf..7c4f2d5a74b 100644 --- a/msgraph_beta/generated/service_principals/item/app_role_assigned_to/item/app_role_assignment_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/app_role_assigned_to/item/app_role_assignment_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignedto?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AppRoleA Returns: Optional[AppRoleAssignment] Find more info here: https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AppRoleAssignment, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppRoleAssignment] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AppRoleAssignment, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AppRoleAssignmentItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AppRoleAssignmentItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AppRoleAssignmentItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/app_role_assignments/app_role_assignments_request_builder.py b/msgraph_beta/generated/service_principals/item/app_role_assignments/app_role_assignments_request_builder.py index 3a6b3c4cc5f..a8d99758068 100644 --- a/msgraph_beta/generated/service_principals/item/app_role_assignments/app_role_assignments_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/app_role_assignments/app_role_assignments_request_builder.py @@ -39,7 +39,6 @@ def by_app_role_assignment_id(self,app_role_assignment_id: str) -> AppRoleAssign param app_role_assignment_id: The unique identifier of appRoleAssignment Returns: AppRoleAssignmentItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if app_role_assignment_id is None: raise TypeError("app_role_assignment_id cannot be null.") from .item.app_role_assignment_item_request_builder import AppRoleAssignmentItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AppRoleA Returns: Optional[AppRoleAssignmentCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignments?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: AppRoleAssignment, request_configuration: Optional[Req Returns: Optional[AppRoleAssignment] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-post-approleassignments?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: AppRoleAssignment, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> AppRoleAssignmentsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AppRoleAssignmentsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AppRoleAssignmentsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/app_role_assignments/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/app_role_assignments/count/count_request_builder.py index ab1f29d97d8..7c4ab2ec09c 100644 --- a/msgraph_beta/generated/service_principals/item/app_role_assignments/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/app_role_assignments/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/app_role_assignments/item/app_role_assignment_item_request_builder.py b/msgraph_beta/generated/service_principals/item/app_role_assignments/item/app_role_assignment_item_request_builder.py index c85f3cccbd9..d66e838e445 100644 --- a/msgraph_beta/generated/service_principals/item/app_role_assignments/item/app_role_assignment_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/app_role_assignments/item/app_role_assignment_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-approleassignments?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AppRoleA Returns: Optional[AppRoleAssignment] Find more info here: https://learn.microsoft.com/graph/api/approleassignment-get?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: AppRoleAssignment, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppRoleAssignment] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: AppRoleAssignment, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> AppRoleAssignmentItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AppRoleAssignmentItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AppRoleAssignmentItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/check_member_groups/check_member_groups_request_builder.py b/msgraph_beta/generated/service_principals/item/check_member_groups/check_member_groups_request_builder.py index a875595a785..e2f97d03549 100644 --- a/msgraph_beta/generated/service_principals/item/check_member_groups/check_member_groups_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/check_member_groups/check_member_groups_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: CheckMemberGroupsPostRequestBody, request_configuratio Returns: Optional[CheckMemberGroupsPostResponse] Find more info here: https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: CheckMemberGroupsPostRequestBody, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> CheckMemberGroupsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CheckMemberGroupsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CheckMemberGroupsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/check_member_objects/check_member_objects_request_builder.py b/msgraph_beta/generated/service_principals/item/check_member_objects/check_member_objects_request_builder.py index 3ab34bc7ac0..e808d98ffcd 100644 --- a/msgraph_beta/generated/service_principals/item/check_member_objects/check_member_objects_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/check_member_objects/check_member_objects_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: CheckMemberObjectsPostRequestBody, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CheckMemberObjectsPostResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -62,7 +61,6 @@ def to_post_request_information(self,body: CheckMemberObjectsPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -77,7 +75,6 @@ def with_url(self,raw_url: str) -> CheckMemberObjectsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CheckMemberObjectsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CheckMemberObjectsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/claims_mapping_policies/claims_mapping_policies_request_builder.py b/msgraph_beta/generated/service_principals/item/claims_mapping_policies/claims_mapping_policies_request_builder.py index 76be6a6620e..eb85a53d98f 100644 --- a/msgraph_beta/generated/service_principals/item/claims_mapping_policies/claims_mapping_policies_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/claims_mapping_policies/claims_mapping_policies_request_builder.py @@ -54,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ClaimsMa Returns: Optional[ClaimsMappingPolicyCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-claimsmappingpolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +74,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +85,6 @@ def with_url(self,raw_url: str) -> ClaimsMappingPoliciesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ClaimsMappingPoliciesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ClaimsMappingPoliciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/claims_mapping_policies/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/claims_mapping_policies/count/count_request_builder.py index bf23e737b45..4b1f0f0bf88 100644 --- a/msgraph_beta/generated/service_principals/item/claims_mapping_policies/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/claims_mapping_policies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/claims_mapping_policies/item/ref/ref_request_builder.py b/msgraph_beta/generated/service_principals/item/claims_mapping_policies/item/ref/ref_request_builder.py index afcb5e4ca43..f49fcf64511 100644 --- a/msgraph_beta/generated/service_principals/item/claims_mapping_policies/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/claims_mapping_policies/item/ref/ref_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-claimsmappingpolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/claims_mapping_policies/ref/ref_request_builder.py b/msgraph_beta/generated/service_principals/item/claims_mapping_policies/ref/ref_request_builder.py index 3ab3b8cc125..fe000063fc7 100644 --- a/msgraph_beta/generated/service_principals/item/claims_mapping_policies/ref/ref_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/claims_mapping_policies/ref/ref_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-claimsmappingpolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque Returns: Optional[StringCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-claimsmappingpolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-post-claimsmappingpolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/claimsMappingPolicies/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/claims_policy/claims_policy_request_builder.py b/msgraph_beta/generated/service_principals/item/claims_policy/claims_policy_request_builder.py index 9dc4401863c..eb201be90cd 100644 --- a/msgraph_beta/generated/service_principals/item/claims_policy/claims_policy_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/claims_policy/claims_policy_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ClaimsPo Returns: Optional[CustomClaimsPolicy] Find more info here: https://learn.microsoft.com/graph/api/customclaimspolicy-get?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def patch(self,body: CustomClaimsPolicy, request_configuration: Optional[R Returns: Optional[CustomClaimsPolicy] Find more info here: https://learn.microsoft.com/graph/api/customclaimspolicy-update?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -85,7 +83,6 @@ async def put(self,body: CustomClaimsPolicy, request_configuration: Optional[Req Returns: Optional[CustomClaimsPolicy] Find more info here: https://learn.microsoft.com/graph/api/customclaimspolicy-update?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -108,7 +105,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -121,7 +117,6 @@ def to_patch_request_information(self,body: CustomClaimsPolicy, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -137,7 +132,6 @@ def to_put_request_information(self,body: CustomClaimsPolicy, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -152,7 +146,6 @@ def with_url(self,raw_url: str) -> ClaimsPolicyRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ClaimsPolicyRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ClaimsPolicyRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/create_password_single_sign_on_credentials/create_password_single_sign_on_credentials_request_builder.py b/msgraph_beta/generated/service_principals/item/create_password_single_sign_on_credentials/create_password_single_sign_on_credentials_request_builder.py index 15fe609412d..35806e9a133 100644 --- a/msgraph_beta/generated/service_principals/item/create_password_single_sign_on_credentials/create_password_single_sign_on_credentials_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/create_password_single_sign_on_credentials/create_password_single_sign_on_credentials_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: CreatePasswordSingleSignOnCredentialsPostRequestBody, Returns: Optional[PasswordSingleSignOnCredentialSet] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-createpasswordsinglesignoncredentials?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: CreatePasswordSingleSignOnCredentials param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> CreatePasswordSingleSignOnCredentialsRequestB param raw_url: The raw URL to use for the request builder. Returns: CreatePasswordSingleSignOnCredentialsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CreatePasswordSingleSignOnCredentialsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/created_objects/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/created_objects/count/count_request_builder.py index d1c5e417d53..809af12138d 100644 --- a/msgraph_beta/generated/service_principals/item/created_objects/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/created_objects/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/created_objects/created_objects_request_builder.py b/msgraph_beta/generated/service_principals/item/created_objects/created_objects_request_builder.py index 3b11e89d82c..57699df1383 100644 --- a/msgraph_beta/generated/service_principals/item/created_objects/created_objects_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/created_objects/created_objects_request_builder.py @@ -39,7 +39,6 @@ def by_directory_object_id(self,directory_object_id: str) -> DirectoryObjectItem param directory_object_id: The unique identifier of directoryObject Returns: DirectoryObjectItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if directory_object_id is None: raise TypeError("directory_object_id cannot be null.") from .item.directory_object_item_request_builder import DirectoryObjectItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CreatedO Returns: Optional[DirectoryObjectCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-createdobjects?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -88,7 +85,6 @@ def with_url(self,raw_url: str) -> CreatedObjectsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CreatedObjectsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CreatedObjectsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/created_objects/graph_service_principal/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/created_objects/graph_service_principal/count/count_request_builder.py index 38838ecf215..44a3750aa73 100644 --- a/msgraph_beta/generated/service_principals/item/created_objects/graph_service_principal/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/created_objects/graph_service_principal/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/created_objects/graph_service_principal/graph_service_principal_request_builder.py b/msgraph_beta/generated/service_principals/item/created_objects/graph_service_principal/graph_service_principal_request_builder.py index 57653034bcc..e638ea4e622 100644 --- a/msgraph_beta/generated/service_principals/item/created_objects/graph_service_principal/graph_service_principal_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/created_objects/graph_service_principal/graph_service_principal_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphSer param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServicePrincipalCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphServicePrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphServicePrincipalRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphServicePrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/created_objects/item/directory_object_item_request_builder.py b/msgraph_beta/generated/service_principals/item/created_objects/item/directory_object_item_request_builder.py index 1ae7edd46a7..585db6134f3 100644 --- a/msgraph_beta/generated/service_principals/item/created_objects/item/directory_object_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/created_objects/item/directory_object_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> DirectoryObjectItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoryObjectItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoryObjectItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/created_objects/item/graph_service_principal/graph_service_principal_request_builder.py b/msgraph_beta/generated/service_principals/item/created_objects/item/graph_service_principal/graph_service_principal_request_builder.py index 04c5b4ee9ad..6989bde3965 100644 --- a/msgraph_beta/generated/service_principals/item/created_objects/item/graph_service_principal/graph_service_principal_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/created_objects/item/graph_service_principal/graph_service_principal_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphSer param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServicePrincipal] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphServicePrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphServicePrincipalRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphServicePrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/count/count_request_builder.py index 44b130969e5..2de86d3bf62 100644 --- a/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/delegated_permission_classifications_request_builder.py b/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/delegated_permission_classifications_request_builder.py index fef5cd44960..9f76622731e 100644 --- a/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/delegated_permission_classifications_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/delegated_permission_classifications_request_builder.py @@ -39,7 +39,6 @@ def by_delegated_permission_classification_id(self,delegated_permission_classifi param delegated_permission_classification_id: The unique identifier of delegatedPermissionClassification Returns: DelegatedPermissionClassificationItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if delegated_permission_classification_id is None: raise TypeError("delegated_permission_classification_id cannot be null.") from .item.delegated_permission_classification_item_request_builder import DelegatedPermissionClassificationItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Delegate Returns: Optional[DelegatedPermissionClassificationCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-delegatedpermissionclassifications?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: DelegatedPermissionClassification, request_configurati Returns: Optional[DelegatedPermissionClassification] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-post-delegatedpermissionclassifications?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: DelegatedPermissionClassification, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> DelegatedPermissionClassificationsRequestBuil param raw_url: The raw URL to use for the request builder. Returns: DelegatedPermissionClassificationsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DelegatedPermissionClassificationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/item/delegated_permission_classification_item_request_builder.py b/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/item/delegated_permission_classification_item_request_builder.py index f08522f87f6..e7a66e30823 100644 --- a/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/item/delegated_permission_classification_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/delegated_permission_classifications/item/delegated_permission_classification_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-delegatedpermissionclassifications?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Delegate param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DelegatedPermissionClassification] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: DelegatedPermissionClassification, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DelegatedPermissionClassification] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: DelegatedPermissionClassification, r param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> DelegatedPermissionClassificationItemRequestB param raw_url: The raw URL to use for the request builder. Returns: DelegatedPermissionClassificationItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DelegatedPermissionClassificationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/delete_password_single_sign_on_credentials/delete_password_single_sign_on_credentials_request_builder.py b/msgraph_beta/generated/service_principals/item/delete_password_single_sign_on_credentials/delete_password_single_sign_on_credentials_request_builder.py index cb0f9d4f864..2e2c9e66118 100644 --- a/msgraph_beta/generated/service_principals/item/delete_password_single_sign_on_credentials/delete_password_single_sign_on_credentials_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/delete_password_single_sign_on_credentials/delete_password_single_sign_on_credentials_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: DeletePasswordSingleSignOnCredentialsPostRequestBody, Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-deletepasswordsinglesignoncredentials?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: DeletePasswordSingleSignOnCredentials param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> DeletePasswordSingleSignOnCredentialsRequestB param raw_url: The raw URL to use for the request builder. Returns: DeletePasswordSingleSignOnCredentialsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DeletePasswordSingleSignOnCredentialsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/endpoints/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/endpoints/count/count_request_builder.py index bcfd3fa1e0f..8743e0280f7 100644 --- a/msgraph_beta/generated/service_principals/item/endpoints/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/endpoints/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/endpoints/endpoints_request_builder.py b/msgraph_beta/generated/service_principals/item/endpoints/endpoints_request_builder.py index a9795f0e635..817f163cc31 100644 --- a/msgraph_beta/generated/service_principals/item/endpoints/endpoints_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/endpoints/endpoints_request_builder.py @@ -39,7 +39,6 @@ def by_endpoint_id(self,endpoint_id: str) -> EndpointItemRequestBuilder: param endpoint_id: The unique identifier of endpoint Returns: EndpointItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if endpoint_id is None: raise TypeError("endpoint_id cannot be null.") from .item.endpoint_item_request_builder import EndpointItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Endpoint param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[EndpointCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: Endpoint, request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Endpoint] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: Endpoint, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> EndpointsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: EndpointsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return EndpointsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/endpoints/item/endpoint_item_request_builder.py b/msgraph_beta/generated/service_principals/item/endpoints/item/endpoint_item_request_builder.py index e0412eb7d57..ead47f56edf 100644 --- a/msgraph_beta/generated/service_principals/item/endpoints/item/endpoint_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/endpoints/item/endpoint_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Endpoint param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Endpoint] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: Endpoint, request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Endpoint] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: Endpoint, request_configuration: Opt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> EndpointItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: EndpointItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return EndpointItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/federated_identity_credentials/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/federated_identity_credentials/count/count_request_builder.py index 2c360714f4e..036807ec147 100644 --- a/msgraph_beta/generated/service_principals/item/federated_identity_credentials/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/federated_identity_credentials/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/federated_identity_credentials/federated_identity_credentials_request_builder.py b/msgraph_beta/generated/service_principals/item/federated_identity_credentials/federated_identity_credentials_request_builder.py index c654ed81ff9..22e82d0bcec 100644 --- a/msgraph_beta/generated/service_principals/item/federated_identity_credentials/federated_identity_credentials_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/federated_identity_credentials/federated_identity_credentials_request_builder.py @@ -39,7 +39,6 @@ def by_federated_identity_credential_id(self,federated_identity_credential_id: s param federated_identity_credential_id: The unique identifier of federatedIdentityCredential Returns: FederatedIdentityCredentialItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if federated_identity_credential_id is None: raise TypeError("federated_identity_credential_id cannot be null.") from .item.federated_identity_credential_item_request_builder import FederatedIdentityCredentialItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Federate param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[FederatedIdentityCredentialCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: FederatedIdentityCredential, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[FederatedIdentityCredential] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: FederatedIdentityCredential, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> FederatedIdentityCredentialsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FederatedIdentityCredentialsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FederatedIdentityCredentialsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/federated_identity_credentials/item/federated_identity_credential_item_request_builder.py b/msgraph_beta/generated/service_principals/item/federated_identity_credentials/item/federated_identity_credential_item_request_builder.py index 39a9dd0fed8..b7df6f21d3b 100644 --- a/msgraph_beta/generated/service_principals/item/federated_identity_credentials/item/federated_identity_credential_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/federated_identity_credentials/item/federated_identity_credential_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Federate param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[FederatedIdentityCredential] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: FederatedIdentityCredential, request_configuration: O param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[FederatedIdentityCredential] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: FederatedIdentityCredential, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> FederatedIdentityCredentialItemRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: FederatedIdentityCredentialItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FederatedIdentityCredentialItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/federated_identity_credentials_with_name/federated_identity_credentials_with_name_request_builder.py b/msgraph_beta/generated/service_principals/item/federated_identity_credentials_with_name/federated_identity_credentials_with_name_request_builder.py index 96b3a4e63fb..22d1a09271b 100644 --- a/msgraph_beta/generated/service_principals/item/federated_identity_credentials_with_name/federated_identity_credentials_with_name_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/federated_identity_credentials_with_name/federated_identity_credentials_with_name_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Federate param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[FederatedIdentityCredential] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: FederatedIdentityCredential, request_configuration: O param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[FederatedIdentityCredential] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: FederatedIdentityCredential, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> FederatedIdentityCredentialsWithNameRequestBu param raw_url: The raw URL to use for the request builder. Returns: FederatedIdentityCredentialsWithNameRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FederatedIdentityCredentialsWithNameRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/get_member_groups/get_member_groups_request_builder.py b/msgraph_beta/generated/service_principals/item/get_member_groups/get_member_groups_request_builder.py index 558ad62d8f3..0e4cfef6b9c 100644 --- a/msgraph_beta/generated/service_principals/item/get_member_groups/get_member_groups_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/get_member_groups/get_member_groups_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: GetMemberGroupsPostRequestBody, request_configuration: Returns: Optional[GetMemberGroupsPostResponse] Find more info here: https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: GetMemberGroupsPostRequestBody, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> GetMemberGroupsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GetMemberGroupsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetMemberGroupsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/get_member_objects/get_member_objects_request_builder.py b/msgraph_beta/generated/service_principals/item/get_member_objects/get_member_objects_request_builder.py index e134d2e0806..0f27b4a1368 100644 --- a/msgraph_beta/generated/service_principals/item/get_member_objects/get_member_objects_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/get_member_objects/get_member_objects_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: GetMemberObjectsPostRequestBody, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GetMemberObjectsPostResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -62,7 +61,6 @@ def to_post_request_information(self,body: GetMemberObjectsPostRequestBody, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -77,7 +75,6 @@ def with_url(self,raw_url: str) -> GetMemberObjectsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GetMemberObjectsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetMemberObjectsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/get_password_single_sign_on_credentials/get_password_single_sign_on_credentials_request_builder.py b/msgraph_beta/generated/service_principals/item/get_password_single_sign_on_credentials/get_password_single_sign_on_credentials_request_builder.py index 48d38f619c3..323e1845229 100644 --- a/msgraph_beta/generated/service_principals/item/get_password_single_sign_on_credentials/get_password_single_sign_on_credentials_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/get_password_single_sign_on_credentials/get_password_single_sign_on_credentials_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: GetPasswordSingleSignOnCredentialsPostRequestBody, req Returns: Optional[PasswordSingleSignOnCredentialSet] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-getpasswordsinglesignoncredentials?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: GetPasswordSingleSignOnCredentialsPos param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> GetPasswordSingleSignOnCredentialsRequestBuil param raw_url: The raw URL to use for the request builder. Returns: GetPasswordSingleSignOnCredentialsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetPasswordSingleSignOnCredentialsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/count/count_request_builder.py index 79a8908147a..d36decf6df3 100644 --- a/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/home_realm_discovery_policies_request_builder.py b/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/home_realm_discovery_policies_request_builder.py index 00742e9264f..fb49c787521 100644 --- a/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/home_realm_discovery_policies_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/home_realm_discovery_policies_request_builder.py @@ -54,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[HomeReal Returns: Optional[HomeRealmDiscoveryPolicyCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +74,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +85,6 @@ def with_url(self,raw_url: str) -> HomeRealmDiscoveryPoliciesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: HomeRealmDiscoveryPoliciesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return HomeRealmDiscoveryPoliciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/item/ref/ref_request_builder.py b/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/item/ref/ref_request_builder.py index 331e32f4eef..68e78120b64 100644 --- a/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/item/ref/ref_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-homerealmdiscoverypolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/ref/ref_request_builder.py b/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/ref/ref_request_builder.py index c3941a77eeb..4a86eb7dc80 100644 --- a/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/ref/ref_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/home_realm_discovery_policies/ref/ref_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-homerealmdiscoverypolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque Returns: Optional[StringCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-post-homerealmdiscoverypolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/homeRealmDiscoveryPolicies/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/license_details/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/license_details/count/count_request_builder.py index b01194afaab..ee54e486c81 100644 --- a/msgraph_beta/generated/service_principals/item/license_details/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/license_details/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/license_details/get_teams_licensing_details/get_teams_licensing_details_request_builder.py b/msgraph_beta/generated/service_principals/item/license_details/get_teams_licensing_details/get_teams_licensing_details_request_builder.py index 3bfdfbd9c66..c77e6385f97 100644 --- a/msgraph_beta/generated/service_principals/item/license_details/get_teams_licensing_details/get_teams_licensing_details_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/license_details/get_teams_licensing_details/get_teams_licensing_details_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar Returns: Optional[TeamsLicensingDetails] Find more info here: https://learn.microsoft.com/graph/api/licensedetails-getteamslicensingdetails?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GetTeamsLicensingDetailsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GetTeamsLicensingDetailsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetTeamsLicensingDetailsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/license_details/item/license_details_item_request_builder.py b/msgraph_beta/generated/service_principals/item/license_details/item/license_details_item_request_builder.py index 3d42e63f521..ae98f1d7dfd 100644 --- a/msgraph_beta/generated/service_principals/item/license_details/item/license_details_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/license_details/item/license_details_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[LicenseD param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[LicenseDetails] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: LicenseDetails, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[LicenseDetails] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: LicenseDetails, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> LicenseDetailsItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LicenseDetailsItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LicenseDetailsItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/license_details/license_details_request_builder.py b/msgraph_beta/generated/service_principals/item/license_details/license_details_request_builder.py index 8ab00dbad93..fc397a7c9f5 100644 --- a/msgraph_beta/generated/service_principals/item/license_details/license_details_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/license_details/license_details_request_builder.py @@ -40,7 +40,6 @@ def by_license_details_id(self,license_details_id: str) -> LicenseDetailsItemReq param license_details_id: The unique identifier of licenseDetails Returns: LicenseDetailsItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if license_details_id is None: raise TypeError("license_details_id cannot be null.") from .item.license_details_item_request_builder import LicenseDetailsItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[LicenseD param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[LicenseDetailsCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: LicenseDetails, request_configuration: Optional[Reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[LicenseDetails] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: LicenseDetails, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> LicenseDetailsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LicenseDetailsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LicenseDetailsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/lifecycle/compliance_issues/compliance_issues_request_builder.py b/msgraph_beta/generated/service_principals/item/lifecycle/compliance_issues/compliance_issues_request_builder.py deleted file mode 100644 index 4cffaef278d..00000000000 --- a/msgraph_beta/generated/service_principals/item/lifecycle/compliance_issues/compliance_issues_request_builder.py +++ /dev/null @@ -1,166 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .....models.identity_governance.compliance_issue_collection_response import ComplianceIssueCollectionResponse - from .....models.o_data_errors.o_data_error import ODataError - from .count.count_request_builder import CountRequestBuilder - from .item.compliance_issue_item_request_builder import ComplianceIssueItemRequestBuilder - -class ComplianceIssuesRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the complianceIssues property of the microsoft.graph.identityGovernance.identityLifecycle entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new ComplianceIssuesRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/lifecycle/complianceIssues{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) - - def by_compliance_issue_id(self,compliance_issue_id: str) -> ComplianceIssueItemRequestBuilder: - """ - Provides operations to manage the complianceIssues property of the microsoft.graph.identityGovernance.identityLifecycle entity. - param compliance_issue_id: The unique identifier of complianceIssue - Returns: ComplianceIssueItemRequestBuilder - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - if compliance_issue_id is None: - raise TypeError("compliance_issue_id cannot be null.") - from .item.compliance_issue_item_request_builder import ComplianceIssueItemRequestBuilder - - url_tpl_params = get_path_parameters(self.path_parameters) - url_tpl_params["complianceIssue%2Did"] = compliance_issue_id - return ComplianceIssueItemRequestBuilder(self.request_adapter, url_tpl_params) - - async def get(self,request_configuration: Optional[RequestConfiguration[ComplianceIssuesRequestBuilderGetQueryParameters]] = None) -> Optional[ComplianceIssueCollectionResponse]: - """ - Get complianceIssues from servicePrincipals - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[ComplianceIssueCollectionResponse] - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .....models.identity_governance.compliance_issue_collection_response import ComplianceIssueCollectionResponse - - return await self.request_adapter.send_async(request_info, ComplianceIssueCollectionResponse, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ComplianceIssuesRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get complianceIssues from servicePrincipals - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> ComplianceIssuesRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: ComplianceIssuesRequestBuilder - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return ComplianceIssuesRequestBuilder(self.request_adapter, raw_url) - - @property - def count(self) -> CountRequestBuilder: - """ - Provides operations to count the resources in the collection. - """ - from .count.count_request_builder import CountRequestBuilder - - return CountRequestBuilder(self.request_adapter, self.path_parameters) - - @dataclass - class ComplianceIssuesRequestBuilderGetQueryParameters(): - """ - Get complianceIssues from servicePrincipals - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "count": - return "%24count" - if original_name == "expand": - return "%24expand" - if original_name == "filter": - return "%24filter" - if original_name == "orderby": - return "%24orderby" - if original_name == "search": - return "%24search" - if original_name == "select": - return "%24select" - if original_name == "skip": - return "%24skip" - if original_name == "top": - return "%24top" - return original_name - - # Include count of items - count: Optional[bool] = None - - # Expand related entities - expand: Optional[list[str]] = None - - # Filter items by property values - filter: Optional[str] = None - - # Order items by property values - orderby: Optional[list[str]] = None - - # Search items by search phrases - search: Optional[str] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - # Skip the first n items - skip: Optional[int] = None - - # Show only the first n items - top: Optional[int] = None - - - @dataclass - class ComplianceIssuesRequestBuilderGetRequestConfiguration(RequestConfiguration[ComplianceIssuesRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/service_principals/item/lifecycle/compliance_issues/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/lifecycle/compliance_issues/count/count_request_builder.py deleted file mode 100644 index 610b364c07c..00000000000 --- a/msgraph_beta/generated/service_principals/item/lifecycle/compliance_issues/count/count_request_builder.py +++ /dev/null @@ -1,107 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ......models.o_data_errors.o_data_error import ODataError - -class CountRequestBuilder(BaseRequestBuilder): - """ - Provides operations to count the resources in the collection. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new CountRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/lifecycle/complianceIssues/$count{?%24filter,%24search}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> Optional[int]: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[int] - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - return await self.request_adapter.send_primitive_async(request_info, "int", error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get the number of the resource - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "text/plain;q=0.9") - return request_info - - def with_url(self,raw_url: str) -> CountRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: CountRequestBuilder - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return CountRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class CountRequestBuilderGetQueryParameters(): - """ - Get the number of the resource - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "filter": - return "%24filter" - if original_name == "search": - return "%24search" - return original_name - - # Filter items by property values - filter: Optional[str] = None - - # Search items by search phrases - search: Optional[str] = None - - - @dataclass - class CountRequestBuilderGetRequestConfiguration(RequestConfiguration[CountRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/service_principals/item/lifecycle/compliance_issues/item/compliance_issue_item_request_builder.py b/msgraph_beta/generated/service_principals/item/lifecycle/compliance_issues/item/compliance_issue_item_request_builder.py deleted file mode 100644 index 85d638d5709..00000000000 --- a/msgraph_beta/generated/service_principals/item/lifecycle/compliance_issues/item/compliance_issue_item_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ......models.identity_governance.compliance_issue import ComplianceIssue - from ......models.o_data_errors.o_data_error import ODataError - -class ComplianceIssueItemRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the complianceIssues property of the microsoft.graph.identityGovernance.identityLifecycle entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new ComplianceIssueItemRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/lifecycle/complianceIssues/{complianceIssue%2Did}{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[ComplianceIssueItemRequestBuilderGetQueryParameters]] = None) -> Optional[ComplianceIssue]: - """ - Get complianceIssues from servicePrincipals - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[ComplianceIssue] - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from ......models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from ......models.identity_governance.compliance_issue import ComplianceIssue - - return await self.request_adapter.send_async(request_info, ComplianceIssue, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ComplianceIssueItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get complianceIssues from servicePrincipals - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> ComplianceIssueItemRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: ComplianceIssueItemRequestBuilder - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return ComplianceIssueItemRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class ComplianceIssueItemRequestBuilderGetQueryParameters(): - """ - Get complianceIssues from servicePrincipals - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class ComplianceIssueItemRequestBuilderGetRequestConfiguration(RequestConfiguration[ComplianceIssueItemRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/service_principals/item/lifecycle/effective_governing_policy/effective_governing_policy_request_builder.py b/msgraph_beta/generated/service_principals/item/lifecycle/effective_governing_policy/effective_governing_policy_request_builder.py deleted file mode 100644 index 3efcd0f08cc..00000000000 --- a/msgraph_beta/generated/service_principals/item/lifecycle/effective_governing_policy/effective_governing_policy_request_builder.py +++ /dev/null @@ -1,110 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from .....models.identity_governance.lifecycle_policy import LifecyclePolicy - from .....models.o_data_errors.o_data_error import ODataError - -class EffectiveGoverningPolicyRequestBuilder(BaseRequestBuilder): - """ - Provides operations to manage the effectiveGoverningPolicy property of the microsoft.graph.identityGovernance.identityLifecycle entity. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new EffectiveGoverningPolicyRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/lifecycle/effectiveGoverningPolicy{?%24expand,%24select}", path_parameters) - - async def get(self,request_configuration: Optional[RequestConfiguration[EffectiveGoverningPolicyRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicy]: - """ - Get effectiveGoverningPolicy from servicePrincipals - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicy] - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - request_info = self.to_get_request_information( - request_configuration - ) - from .....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - from .....models.identity_governance.lifecycle_policy import LifecyclePolicy - - return await self.request_adapter.send_async(request_info, LifecyclePolicy, error_mapping) - - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[EffectiveGoverningPolicyRequestBuilderGetQueryParameters]] = None) -> RequestInformation: - """ - Get effectiveGoverningPolicy from servicePrincipals - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> EffectiveGoverningPolicyRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: EffectiveGoverningPolicyRequestBuilder - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return EffectiveGoverningPolicyRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class EffectiveGoverningPolicyRequestBuilderGetQueryParameters(): - """ - Get effectiveGoverningPolicy from servicePrincipals - """ - def get_query_parameter(self,original_name: str) -> str: - """ - Maps the query parameters names to their encoded names for the URI template parsing. - param original_name: The original query parameter name in the class. - Returns: str - """ - if original_name is None: - raise TypeError("original_name cannot be null.") - if original_name == "expand": - return "%24expand" - if original_name == "select": - return "%24select" - return original_name - - # Expand related entities - expand: Optional[list[str]] = None - - # Select properties to be returned - select: Optional[list[str]] = None - - - @dataclass - class EffectiveGoverningPolicyRequestBuilderGetRequestConfiguration(RequestConfiguration[EffectiveGoverningPolicyRequestBuilderGetQueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/service_principals/item/member_of/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/count/count_request_builder.py index 7e2e862a8be..890f318988d 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/graph_administrative_unit/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/graph_administrative_unit/count/count_request_builder.py index 8032edd6f54..d1d4e741165 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/graph_administrative_unit/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/graph_administrative_unit/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/graph_administrative_unit/graph_administrative_unit_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/graph_administrative_unit/graph_administrative_unit_request_builder.py index affde5cf7ee..44a2ae334b7 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/graph_administrative_unit/graph_administrative_unit_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/graph_administrative_unit/graph_administrative_unit_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphAdm param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AdministrativeUnitCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphAdministrativeUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphAdministrativeUnitRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphAdministrativeUnitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/graph_directory_role/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/graph_directory_role/count/count_request_builder.py index c3cb0c8039a..3e768f67a79 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/graph_directory_role/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/graph_directory_role/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/graph_directory_role/graph_directory_role_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/graph_directory_role/graph_directory_role_request_builder.py index 3f2c87fae3c..584b1d714a9 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/graph_directory_role/graph_directory_role_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/graph_directory_role/graph_directory_role_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphDir param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryRoleCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphDirectoryRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphDirectoryRoleRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphDirectoryRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/graph_group/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/graph_group/count/count_request_builder.py index 30dc7223225..09a6a2241b7 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/graph_group/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/graph_group/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/graph_group/graph_group_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/graph_group/graph_group_request_builder.py index 430c85a2a4d..0da9fd135ae 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/graph_group/graph_group_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/graph_group/graph_group_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphGro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GroupCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphGroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphGroupRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphGroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/item/directory_object_item_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/item/directory_object_item_request_builder.py index 99287b953c3..2f7b1e9bdb2 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/item/directory_object_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/item/directory_object_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> DirectoryObjectItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoryObjectItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoryObjectItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/item/graph_administrative_unit/graph_administrative_unit_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/item/graph_administrative_unit/graph_administrative_unit_request_builder.py index b0f4e2b4a5d..4f25f0070bf 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/item/graph_administrative_unit/graph_administrative_unit_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/item/graph_administrative_unit/graph_administrative_unit_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphAdm param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AdministrativeUnit] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphAdministrativeUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphAdministrativeUnitRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphAdministrativeUnitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/item/graph_directory_role/graph_directory_role_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/item/graph_directory_role/graph_directory_role_request_builder.py index 7a523cfd423..f712799ef80 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/item/graph_directory_role/graph_directory_role_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/item/graph_directory_role/graph_directory_role_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphDir param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryRole] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphDirectoryRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphDirectoryRoleRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphDirectoryRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/item/graph_group/graph_group_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/item/graph_group/graph_group_request_builder.py index 69a244fa8ff..e84c6492192 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/item/graph_group/graph_group_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/item/graph_group/graph_group_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphGro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Group] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphGroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphGroupRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphGroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/member_of/member_of_request_builder.py b/msgraph_beta/generated/service_principals/item/member_of/member_of_request_builder.py index 67b53edc3d4..c5ba810fe19 100644 --- a/msgraph_beta/generated/service_principals/item/member_of/member_of_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/member_of/member_of_request_builder.py @@ -41,7 +41,6 @@ def by_directory_object_id(self,directory_object_id: str) -> DirectoryObjectItem param directory_object_id: The unique identifier of directoryObject Returns: DirectoryObjectItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if directory_object_id is None: raise TypeError("directory_object_id cannot be null.") from .item.directory_object_item_request_builder import DirectoryObjectItemRequestBuilder @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MemberOf Returns: Optional[DirectoryObjectCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-memberof?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -90,7 +87,6 @@ def with_url(self,raw_url: str) -> MemberOfRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MemberOfRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MemberOfRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/microsoft_graph_identity_governance_attest/microsoft_graph_identity_governance_attest_request_builder.py b/msgraph_beta/generated/service_principals/item/microsoft_graph_identity_governance_attest/microsoft_graph_identity_governance_attest_request_builder.py deleted file mode 100644 index 9ebc2c06443..00000000000 --- a/msgraph_beta/generated/service_principals/item/microsoft_graph_identity_governance_attest/microsoft_graph_identity_governance_attest_request_builder.py +++ /dev/null @@ -1,81 +0,0 @@ -from __future__ import annotations -from collections.abc import Callable -from dataclasses import dataclass, field -from kiota_abstractions.base_request_builder import BaseRequestBuilder -from kiota_abstractions.base_request_configuration import RequestConfiguration -from kiota_abstractions.default_query_parameters import QueryParameters -from kiota_abstractions.get_path_parameters import get_path_parameters -from kiota_abstractions.method import Method -from kiota_abstractions.request_adapter import RequestAdapter -from kiota_abstractions.request_information import RequestInformation -from kiota_abstractions.request_option import RequestOption -from kiota_abstractions.serialization import Parsable, ParsableFactory -from typing import Any, Optional, TYPE_CHECKING, Union -from warnings import warn - -if TYPE_CHECKING: - from ....models.o_data_errors.o_data_error import ODataError - -class MicrosoftGraphIdentityGovernanceAttestRequestBuilder(BaseRequestBuilder): - """ - Provides operations to call the attest method. - """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: - """ - Instantiates a new MicrosoftGraphIdentityGovernanceAttestRequestBuilder and sets the default values. - param path_parameters: The raw url or the url-template parameters for the request. - param request_adapter: The request adapter to use to execute the requests. - Returns: None - """ - super().__init__(request_adapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/microsoft.graph.identityGovernance.attest", path_parameters) - - async def post(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None: - """ - Invoke action attest - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: None - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - request_info = self.to_post_request_information( - request_configuration - ) - from ....models.o_data_errors.o_data_error import ODataError - - error_mapping: dict[str, type[ParsableFactory]] = { - "XXX": ODataError, - } - if not self.request_adapter: - raise Exception("Http core is null") - return await self.request_adapter.send_no_response_content_async(request_info, error_mapping) - - def to_post_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: - """ - Invoke action attest - param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: RequestInformation - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) - request_info.configure(request_configuration) - request_info.headers.try_add("Accept", "application/json") - return request_info - - def with_url(self,raw_url: str) -> MicrosoftGraphIdentityGovernanceAttestRequestBuilder: - """ - Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. - param raw_url: The raw URL to use for the request builder. - Returns: MicrosoftGraphIdentityGovernanceAttestRequestBuilder - """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) - if raw_url is None: - raise TypeError("raw_url cannot be null.") - return MicrosoftGraphIdentityGovernanceAttestRequestBuilder(self.request_adapter, raw_url) - - @dataclass - class MicrosoftGraphIdentityGovernanceAttestRequestBuilderPostRequestConfiguration(RequestConfiguration[QueryParameters]): - """ - Configuration for the request such as headers, query parameters, and middleware options. - """ - warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) - - diff --git a/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/count/count_request_builder.py index a57fdcb3d64..98c9f67ffa5 100644 --- a/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/item/o_auth2_permission_grant_item_request_builder.py b/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/item/o_auth2_permission_grant_item_request_builder.py index 339bc4ea665..f75a06167cb 100644 --- a/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/item/o_auth2_permission_grant_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/item/o_auth2_permission_grant_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[OAuth2Pe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[OAuth2PermissionGrant] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> OAuth2PermissionGrantItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: OAuth2PermissionGrantItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OAuth2PermissionGrantItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/oauth2_permission_grants_request_builder.py b/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/oauth2_permission_grants_request_builder.py index e45ee0ce7d4..41784f2547f 100644 --- a/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/oauth2_permission_grants_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/oauth2_permission_grants/oauth2_permission_grants_request_builder.py @@ -38,7 +38,6 @@ def by_o_auth2_permission_grant_id(self,o_auth2_permission_grant_id: str) -> OAu param o_auth2_permission_grant_id: The unique identifier of oAuth2PermissionGrant Returns: OAuth2PermissionGrantItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if o_auth2_permission_grant_id is None: raise TypeError("o_auth2_permission_grant_id cannot be null.") from .item.o_auth2_permission_grant_item_request_builder import OAuth2PermissionGrantItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Oauth2Pe Returns: Optional[OAuth2PermissionGrantCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-oauth2permissiongrants?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> Oauth2PermissionGrantsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: Oauth2PermissionGrantsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return Oauth2PermissionGrantsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/count/count_request_builder.py index 9c3165ad226..caf842c913b 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/graph_app_role_assignment/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/graph_app_role_assignment/count/count_request_builder.py index bbe89da2c2d..475031f489f 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/graph_app_role_assignment/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/graph_app_role_assignment/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/graph_app_role_assignment/graph_app_role_assignment_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/graph_app_role_assignment/graph_app_role_assignment_request_builder.py index 05b44bd5655..6cabfcacead 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/graph_app_role_assignment/graph_app_role_assignment_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/graph_app_role_assignment/graph_app_role_assignment_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphApp param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppRoleAssignmentCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphAppRoleAssignmentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphAppRoleAssignmentRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphAppRoleAssignmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/graph_application/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/graph_application/count/count_request_builder.py index 64de8c6bdff..3b5ef4180e5 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/graph_application/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/graph_application/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/graph_application/graph_application_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/graph_application/graph_application_request_builder.py index 7be7fdef1c5..3510596f92b 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/graph_application/graph_application_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/graph_application/graph_application_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphApp param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApplicationCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphApplicationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphApplicationRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphApplicationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/graph_endpoint/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/graph_endpoint/count/count_request_builder.py index 481afcfdf1f..8d4e093513c 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/graph_endpoint/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/graph_endpoint/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/graph_endpoint/graph_endpoint_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/graph_endpoint/graph_endpoint_request_builder.py index 51466f1883e..acceeba7f83 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/graph_endpoint/graph_endpoint_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/graph_endpoint/graph_endpoint_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphEnd param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[EndpointCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphEndpointRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphEndpointRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphEndpointRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/graph_group/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/graph_group/count/count_request_builder.py index 3d34d840ac1..99c6fe6b542 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/graph_group/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/graph_group/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/graph_group/graph_group_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/graph_group/graph_group_request_builder.py index acba617a18e..57ba1c3d50b 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/graph_group/graph_group_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/graph_group/graph_group_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphGro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GroupCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphGroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphGroupRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphGroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/graph_service_principal/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/graph_service_principal/count/count_request_builder.py index 4de3ad5f011..8ebf8ee323b 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/graph_service_principal/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/graph_service_principal/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/graph_service_principal/graph_service_principal_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/graph_service_principal/graph_service_principal_request_builder.py index c41ff1a4ac2..77203b86391 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/graph_service_principal/graph_service_principal_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/graph_service_principal/graph_service_principal_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphSer param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServicePrincipalCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphServicePrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphServicePrincipalRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphServicePrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/item/directory_object_item_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/item/directory_object_item_request_builder.py index 80ad12c9058..226664544fb 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/item/directory_object_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/item/directory_object_item_request_builder.py @@ -41,7 +41,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -62,7 +61,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -74,7 +72,6 @@ def with_url(self,raw_url: str) -> DirectoryObjectItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoryObjectItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoryObjectItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_app_role_assignment/graph_app_role_assignment_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_app_role_assignment/graph_app_role_assignment_request_builder.py index 63a3b7d1a5e..071b69eab15 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_app_role_assignment/graph_app_role_assignment_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_app_role_assignment/graph_app_role_assignment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphApp param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppRoleAssignment] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphAppRoleAssignmentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphAppRoleAssignmentRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphAppRoleAssignmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_application/graph_application_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_application/graph_application_request_builder.py index c53c29e2713..56c4d081d68 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_application/graph_application_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_application/graph_application_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphApp param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Application] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphApplicationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphApplicationRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphApplicationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_endpoint/graph_endpoint_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_endpoint/graph_endpoint_request_builder.py index c117f3cc0f0..f0455a82250 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_endpoint/graph_endpoint_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_endpoint/graph_endpoint_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphEnd param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Endpoint] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphEndpointRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphEndpointRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphEndpointRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_group/graph_group_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_group/graph_group_request_builder.py index a533c7d70dd..bd4c1e1a754 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_group/graph_group_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_group/graph_group_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphGro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Group] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphGroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphGroupRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphGroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_service_principal/graph_service_principal_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_service_principal/graph_service_principal_request_builder.py index 1baef8865ca..b2112617fdd 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_service_principal/graph_service_principal_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/item/graph_service_principal/graph_service_principal_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphSer param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServicePrincipal] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphServicePrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphServicePrincipalRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphServicePrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owned_objects/owned_objects_request_builder.py b/msgraph_beta/generated/service_principals/item/owned_objects/owned_objects_request_builder.py index e24edf0f032..7e4da0aabd6 100644 --- a/msgraph_beta/generated/service_principals/item/owned_objects/owned_objects_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owned_objects/owned_objects_request_builder.py @@ -43,7 +43,6 @@ def by_directory_object_id(self,directory_object_id: str) -> DirectoryObjectItem param directory_object_id: The unique identifier of directoryObject Returns: DirectoryObjectItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if directory_object_id is None: raise TypeError("directory_object_id cannot be null.") from .item.directory_object_item_request_builder import DirectoryObjectItemRequestBuilder @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[OwnedObj Returns: Optional[DirectoryObjectCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-ownedobjects?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -92,7 +89,6 @@ def with_url(self,raw_url: str) -> OwnedObjectsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: OwnedObjectsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OwnedObjectsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/count/count_request_builder.py index 27e56abe997..40549ccf9b6 100644 --- a/msgraph_beta/generated/service_principals/item/owners/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/graph_app_role_assignment/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/graph_app_role_assignment/count/count_request_builder.py index 7c3c2b8af03..aaade6472ca 100644 --- a/msgraph_beta/generated/service_principals/item/owners/graph_app_role_assignment/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/graph_app_role_assignment/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/graph_app_role_assignment/graph_app_role_assignment_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/graph_app_role_assignment/graph_app_role_assignment_request_builder.py index dbcad5e02bf..27105260db9 100644 --- a/msgraph_beta/generated/service_principals/item/owners/graph_app_role_assignment/graph_app_role_assignment_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/graph_app_role_assignment/graph_app_role_assignment_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphApp param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppRoleAssignmentCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphAppRoleAssignmentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphAppRoleAssignmentRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphAppRoleAssignmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/graph_endpoint/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/graph_endpoint/count/count_request_builder.py index 0a20f192224..20471d81494 100644 --- a/msgraph_beta/generated/service_principals/item/owners/graph_endpoint/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/graph_endpoint/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/graph_endpoint/graph_endpoint_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/graph_endpoint/graph_endpoint_request_builder.py index ee066467d8b..d940c7f0787 100644 --- a/msgraph_beta/generated/service_principals/item/owners/graph_endpoint/graph_endpoint_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/graph_endpoint/graph_endpoint_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphEnd param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[EndpointCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphEndpointRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphEndpointRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphEndpointRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/graph_service_principal/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/graph_service_principal/count/count_request_builder.py index a86a0480833..be7ba962bfe 100644 --- a/msgraph_beta/generated/service_principals/item/owners/graph_service_principal/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/graph_service_principal/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/graph_service_principal/graph_service_principal_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/graph_service_principal/graph_service_principal_request_builder.py index ee9147ee74b..aafcd2951d5 100644 --- a/msgraph_beta/generated/service_principals/item/owners/graph_service_principal/graph_service_principal_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/graph_service_principal/graph_service_principal_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphSer param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServicePrincipalCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphServicePrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphServicePrincipalRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphServicePrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/graph_user/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/graph_user/count/count_request_builder.py index 44bc650e953..faa5311b106 100644 --- a/msgraph_beta/generated/service_principals/item/owners/graph_user/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/graph_user/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/graph_user/graph_user_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/graph_user/graph_user_request_builder.py index 7b945354477..db5f91328de 100644 --- a/msgraph_beta/generated/service_principals/item/owners/graph_user/graph_user_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/graph_user/graph_user_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphUse param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[UserCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphUserRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphUserRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphUserRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/item/graph_app_role_assignment/graph_app_role_assignment_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/item/graph_app_role_assignment/graph_app_role_assignment_request_builder.py index edeaa4c0a92..5d04d588e85 100644 --- a/msgraph_beta/generated/service_principals/item/owners/item/graph_app_role_assignment/graph_app_role_assignment_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/item/graph_app_role_assignment/graph_app_role_assignment_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphApp param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AppRoleAssignment] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphAppRoleAssignmentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphAppRoleAssignmentRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphAppRoleAssignmentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/item/graph_endpoint/graph_endpoint_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/item/graph_endpoint/graph_endpoint_request_builder.py index 64c699ba160..e2def4c73ad 100644 --- a/msgraph_beta/generated/service_principals/item/owners/item/graph_endpoint/graph_endpoint_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/item/graph_endpoint/graph_endpoint_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphEnd param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Endpoint] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphEndpointRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphEndpointRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphEndpointRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/item/graph_service_principal/graph_service_principal_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/item/graph_service_principal/graph_service_principal_request_builder.py index 59b535b5c7b..1fa3cf68fb7 100644 --- a/msgraph_beta/generated/service_principals/item/owners/item/graph_service_principal/graph_service_principal_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/item/graph_service_principal/graph_service_principal_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphSer param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServicePrincipal] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphServicePrincipalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphServicePrincipalRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphServicePrincipalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/item/graph_user/graph_user_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/item/graph_user/graph_user_request_builder.py index 17913955f20..dc73ee92f20 100644 --- a/msgraph_beta/generated/service_principals/item/owners/item/graph_user/graph_user_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/item/graph_user/graph_user_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphUse param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[User] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphUserRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphUserRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphUserRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/item/ref/ref_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/item/ref/ref_request_builder.py index 86bad1af42a..68785e4961c 100644 --- a/msgraph_beta/generated/service_principals/item/owners/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/item/ref/ref_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-owners?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/owners_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/owners_request_builder.py index b533d766f63..1e259e98446 100644 --- a/msgraph_beta/generated/service_principals/item/owners/owners_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/owners_request_builder.py @@ -57,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[OwnersRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObjectCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +77,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -90,7 +88,6 @@ def with_url(self,raw_url: str) -> OwnersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: OwnersRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OwnersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/owners/ref/ref_request_builder.py b/msgraph_beta/generated/service_principals/item/owners/ref/ref_request_builder.py index e3c1b082aaa..8d762d44a8b 100644 --- a/msgraph_beta/generated/service_principals/item/owners/ref/ref_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/owners/ref/ref_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-owners?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[StringCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-post-owners?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/owners/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/count/count_request_builder.py index 670dc2005dc..07db55c5741 100644 --- a/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/item/permission_grant_pre_approval_policy_item_request_builder.py b/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/item/permission_grant_pre_approval_policy_item_request_builder.py index 342cadef65d..297f659137e 100644 --- a/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/item/permission_grant_pre_approval_policy_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/item/permission_grant_pre_approval_policy_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi Returns: Optional[PermissionGrantPreApprovalPolicy] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-permissiongrantpreapprovalpolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> PermissionGrantPreApprovalPolicyItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: PermissionGrantPreApprovalPolicyItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionGrantPreApprovalPolicyItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/permission_grant_pre_approval_policies_request_builder.py b/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/permission_grant_pre_approval_policies_request_builder.py index c53ed9a6c99..3ab2dd3cbc7 100644 --- a/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/permission_grant_pre_approval_policies_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/permission_grant_pre_approval_policies/permission_grant_pre_approval_policies_request_builder.py @@ -38,7 +38,6 @@ def by_permission_grant_pre_approval_policy_id(self,permission_grant_pre_approva param permission_grant_pre_approval_policy_id: The unique identifier of permissionGrantPreApprovalPolicy Returns: PermissionGrantPreApprovalPolicyItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if permission_grant_pre_approval_policy_id is None: raise TypeError("permission_grant_pre_approval_policy_id cannot be null.") from .item.permission_grant_pre_approval_policy_item_request_builder import PermissionGrantPreApprovalPolicyItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Permissi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PermissionGrantPreApprovalPolicyCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> PermissionGrantPreApprovalPoliciesRequestBuil param raw_url: The raw URL to use for the request builder. Returns: PermissionGrantPreApprovalPoliciesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PermissionGrantPreApprovalPoliciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/approved_client_apps_request_builder.py b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/approved_client_apps_request_builder.py index f0df87b7c69..8f4139380bc 100644 --- a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/approved_client_apps_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/approved_client_apps_request_builder.py @@ -39,7 +39,6 @@ def by_approved_client_app_id(self,approved_client_app_id: str) -> ApprovedClien param approved_client_app_id: The unique identifier of approvedClientApp Returns: ApprovedClientAppItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if approved_client_app_id is None: raise TypeError("approved_client_app_id cannot be null.") from .item.approved_client_app_item_request_builder import ApprovedClientAppItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approved Returns: Optional[ApprovedClientAppCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-list-approvedclientapps?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: ApprovedClientApp, request_configuration: Optional[Req Returns: Optional[ApprovedClientApp] Find more info here: https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-post-approvedclientapps?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: ApprovedClientApp, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> ApprovedClientAppsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovedClientAppsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovedClientAppsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/count/count_request_builder.py index 75e31f23de8..f2a1545fd38 100644 --- a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/item/approved_client_app_item_request_builder.py b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/item/approved_client_app_item_request_builder.py index 03a851ca0d3..9f065ba4caf 100644 --- a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/item/approved_client_app_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/approved_client_apps/item/approved_client_app_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-delete-approvedclientapps?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approved Returns: Optional[ApprovedClientApp] Find more info here: https://learn.microsoft.com/graph/api/approvedclientapp-get?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: ApprovedClientApp, request_configuration: Optional[Re Returns: Optional[ApprovedClientApp] Find more info here: https://learn.microsoft.com/graph/api/approvedclientapp-update?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: ApprovedClientApp, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> ApprovedClientAppItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovedClientAppItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovedClientAppItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/remote_desktop_security_configuration_request_builder.py b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/remote_desktop_security_configuration_request_builder.py index be0d69b5df0..7051c7ee806 100644 --- a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/remote_desktop_security_configuration_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/remote_desktop_security_configuration_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-remotedesktopsecurityconfiguration?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RemoteDe Returns: Optional[RemoteDesktopSecurityConfiguration] Find more info here: https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-get?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: RemoteDesktopSecurityConfiguration, request_configura Returns: Optional[RemoteDesktopSecurityConfiguration] Find more info here: https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-update?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: RemoteDesktopSecurityConfiguration, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> RemoteDesktopSecurityConfigurationRequestBuil param raw_url: The raw URL to use for the request builder. Returns: RemoteDesktopSecurityConfigurationRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RemoteDesktopSecurityConfigurationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/count/count_request_builder.py index a416c032447..1e142a616c9 100644 --- a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/item/target_device_group_item_request_builder.py b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/item/target_device_group_item_request_builder.py index b8368d2d8fc..08fd9dc9acc 100644 --- a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/item/target_device_group_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/item/target_device_group_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-delete-targetdevicegroups?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TargetDe Returns: Optional[TargetDeviceGroup] Find more info here: https://learn.microsoft.com/graph/api/targetdevicegroup-get?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: TargetDeviceGroup, request_configuration: Optional[Re Returns: Optional[TargetDeviceGroup] Find more info here: https://learn.microsoft.com/graph/api/targetdevicegroup-update?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: TargetDeviceGroup, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> TargetDeviceGroupItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TargetDeviceGroupItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TargetDeviceGroupItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/target_device_groups_request_builder.py b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/target_device_groups_request_builder.py index 17b0434b85a..ee51b68df8c 100644 --- a/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/target_device_groups_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/remote_desktop_security_configuration/target_device_groups/target_device_groups_request_builder.py @@ -39,7 +39,6 @@ def by_target_device_group_id(self,target_device_group_id: str) -> TargetDeviceG param target_device_group_id: The unique identifier of targetDeviceGroup Returns: TargetDeviceGroupItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if target_device_group_id is None: raise TypeError("target_device_group_id cannot be null.") from .item.target_device_group_item_request_builder import TargetDeviceGroupItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TargetDe Returns: Optional[TargetDeviceGroupCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-list-targetdevicegroups?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: TargetDeviceGroup, request_configuration: Optional[Req Returns: Optional[TargetDeviceGroup] Find more info here: https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-post-targetdevicegroups?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: TargetDeviceGroup, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> TargetDeviceGroupsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TargetDeviceGroupsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TargetDeviceGroupsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/restore/restore_request_builder.py b/msgraph_beta/generated/service_principals/item/restore/restore_request_builder.py index 4e418a90cbe..035d2477b05 100644 --- a/msgraph_beta/generated/service_principals/item/restore/restore_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/restore/restore_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[DirectoryObject] Find more info here: https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> RestoreRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RestoreRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RestoreRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/service_principal_item_request_builder.py b/msgraph_beta/generated/service_principals/item/service_principal_item_request_builder.py index 551ca90ecd6..e6ae99938cc 100644 --- a/msgraph_beta/generated/service_principals/item/service_principal_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/service_principal_item_request_builder.py @@ -36,9 +36,7 @@ from .get_password_single_sign_on_credentials.get_password_single_sign_on_credentials_request_builder import GetPasswordSingleSignOnCredentialsRequestBuilder from .home_realm_discovery_policies.home_realm_discovery_policies_request_builder import HomeRealmDiscoveryPoliciesRequestBuilder from .license_details.license_details_request_builder import LicenseDetailsRequestBuilder - from .lifecycle.lifecycle_request_builder import LifecycleRequestBuilder from .member_of.member_of_request_builder import MemberOfRequestBuilder - from .microsoft_graph_identity_governance_attest.microsoft_graph_identity_governance_attest_request_builder import MicrosoftGraphIdentityGovernanceAttestRequestBuilder from .oauth2_permission_grants.oauth2_permission_grants_request_builder import Oauth2PermissionGrantsRequestBuilder from .owned_objects.owned_objects_request_builder import OwnedObjectsRequestBuilder from .owners.owners_request_builder import OwnersRequestBuilder @@ -71,7 +69,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -90,7 +87,6 @@ def federated_identity_credentials_with_name(self,name: str) -> FederatedIdentit param name: Alternate key of federatedIdentityCredential Returns: FederatedIdentityCredentialsWithNameRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if name is None: raise TypeError("name cannot be null.") from .federated_identity_credentials_with_name.federated_identity_credentials_with_name_request_builder import FederatedIdentityCredentialsWithNameRequestBuilder @@ -104,7 +100,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP Returns: Optional[ServicePrincipal] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -127,7 +122,6 @@ async def patch(self,body: ServicePrincipal, request_configuration: Optional[Req Returns: Optional[ServicePrincipal] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -150,7 +144,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -162,7 +155,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -175,7 +167,6 @@ def to_patch_request_information(self,body: ServicePrincipal, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -190,7 +181,6 @@ def with_url(self,raw_url: str) -> ServicePrincipalItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServicePrincipalItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServicePrincipalItemRequestBuilder(self.request_adapter, raw_url) @@ -366,15 +356,6 @@ def license_details(self) -> LicenseDetailsRequestBuilder: return LicenseDetailsRequestBuilder(self.request_adapter, self.path_parameters) - @property - def lifecycle(self) -> LifecycleRequestBuilder: - """ - Provides operations to manage the lifecycle property of the microsoft.graph.servicePrincipal entity. - """ - from .lifecycle.lifecycle_request_builder import LifecycleRequestBuilder - - return LifecycleRequestBuilder(self.request_adapter, self.path_parameters) - @property def member_of(self) -> MemberOfRequestBuilder: """ @@ -384,15 +365,6 @@ def member_of(self) -> MemberOfRequestBuilder: return MemberOfRequestBuilder(self.request_adapter, self.path_parameters) - @property - def microsoft_graph_identity_governance_attest(self) -> MicrosoftGraphIdentityGovernanceAttestRequestBuilder: - """ - Provides operations to call the attest method. - """ - from .microsoft_graph_identity_governance_attest.microsoft_graph_identity_governance_attest_request_builder import MicrosoftGraphIdentityGovernanceAttestRequestBuilder - - return MicrosoftGraphIdentityGovernanceAttestRequestBuilder(self.request_adapter, self.path_parameters) - @property def oauth2_permission_grants(self) -> Oauth2PermissionGrantsRequestBuilder: """ diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/count/count_request_builder.py index 0cb99b0b0d7..ef8c6dbd6ec 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/bulk_upload/bulk_upload_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/bulk_upload/bulk_upload_request_builder.py index b142d05f45b..5a416fd350c 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/bulk_upload/bulk_upload_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/bulk_upload/bulk_upload_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BulkUplo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BulkUpload] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: BulkUpload, request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BulkUpload] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: BulkUpload, request_configuration: O param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> BulkUploadRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BulkUploadRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BulkUploadRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/bulk_upload/value/content_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/bulk_upload/value/content_request_builder.py index bca00351874..207b0949170 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/bulk_upload/value/content_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/bulk_upload/value/content_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ async def put(self,body: bytes, request_configuration: Optional[RequestConfigura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: bytes """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -95,7 +92,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -107,7 +103,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/octet-stream, application/json") @@ -120,7 +115,6 @@ def to_put_request_information(self,body: bytes, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -135,7 +129,6 @@ def with_url(self,raw_url: str) -> ContentRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ContentRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ContentRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/pause/pause_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/pause/pause_request_builder.py index bf55be38f1d..0214000f90b 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/pause/pause_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/pause/pause_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> PauseRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PauseRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PauseRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/provision_on_demand/provision_on_demand_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/provision_on_demand/provision_on_demand_request_builder.py index ee975c073fd..0ae7edbccc4 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/provision_on_demand/provision_on_demand_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/provision_on_demand/provision_on_demand_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: ProvisionOnDemandPostRequestBody, request_configuratio Returns: Optional[StringKeyStringValuePair] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: ProvisionOnDemandPostRequestBody, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> ProvisionOnDemandRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ProvisionOnDemandRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ProvisionOnDemandRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/restart/restart_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/restart/restart_request_builder.py index 93a44f5cfbb..229ecb3bea8 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/restart/restart_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/restart/restart_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: RestartPostRequestBody, request_configuration: Optiona Returns: None Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: RestartPostRequestBody, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> RestartRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RestartRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RestartRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/count/count_request_builder.py index c513efba2f8..7ce97bc4f13 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/directories_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/directories_request_builder.py index c9d167b3dcc..da0908feb28 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/directories_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/directories_request_builder.py @@ -39,7 +39,6 @@ def by_directory_definition_id(self,directory_definition_id: str) -> DirectoryDe param directory_definition_id: The unique identifier of directoryDefinition Returns: DirectoryDefinitionItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if directory_definition_id is None: raise TypeError("directory_definition_id cannot be null.") from .item.directory_definition_item_request_builder import DirectoryDefinitionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryDefinitionCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: DirectoryDefinition, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryDefinition] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: DirectoryDefinition, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> DirectoriesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoriesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoriesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/item/directory_definition_item_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/item/directory_definition_item_request_builder.py index 4be3d4cec2e..f13f4234278 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/item/directory_definition_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/item/directory_definition_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryDefinition] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: DirectoryDefinition, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryDefinition] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: DirectoryDefinition, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> DirectoryDefinitionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoryDefinitionItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoryDefinitionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/item/discover/discover_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/item/discover/discover_request_builder.py index 35c7ed4bca9..4b56583c830 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/item/discover/discover_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/directories/item/discover/discover_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[DirectoryDefinition] Find more info here: https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> DiscoverRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DiscoverRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DiscoverRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/filter_operators/filter_operators_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/filter_operators/filter_operators_request_builder.py index 6f1d5b1a40b..a6e87a4b3b5 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/filter_operators/filter_operators_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/filter_operators/filter_operators_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterOp Returns: Optional[FilterOperatorsGetResponse] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> FilterOperatorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterOperatorsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterOperatorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/functions/functions_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/functions/functions_request_builder.py index 2bb81619653..ca813266595 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/functions/functions_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/functions/functions_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Function Returns: Optional[FunctionsGetResponse] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> FunctionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FunctionsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FunctionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/parse_expression/parse_expression_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/parse_expression/parse_expression_request_builder.py index 6bcbcd8bae6..679e9989c78 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/parse_expression/parse_expression_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/parse_expression/parse_expression_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: ParseExpressionPostRequestBody, request_configuration: Returns: Optional[ParseExpressionResponse] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: ParseExpressionPostRequestBody, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> ParseExpressionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ParseExpressionRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ParseExpressionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/schema_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/schema_request_builder.py index 92ed1d9c577..6056ce4d6fc 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/schema_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/schema/schema_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SchemaRe Returns: Optional[SynchronizationSchema] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-get?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: SynchronizationSchema, request_configuration: Optiona Returns: Optional[SynchronizationSchema] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-update?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: SynchronizationSchema, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> SchemaRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SchemaRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SchemaRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/start/start_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/start/start_request_builder.py index d70bd9e6b97..d6c28414661 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/start/start_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/start/start_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> StartRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StartRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StartRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/synchronization_job_item_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/synchronization_job_item_request_builder.py index 149e837de21..4cb7da32215 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/synchronization_job_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/item/synchronization_job_item_request_builder.py @@ -44,7 +44,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-delete?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -64,7 +63,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Synchron Returns: Optional[SynchronizationJob] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-get?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -86,7 +84,6 @@ async def patch(self,body: SynchronizationJob, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SynchronizationJob] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -109,7 +106,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -121,7 +117,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -134,7 +129,6 @@ def to_patch_request_information(self,body: SynchronizationJob, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -149,7 +143,6 @@ def with_url(self,raw_url: str) -> SynchronizationJobItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SynchronizationJobItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SynchronizationJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/jobs/jobs_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/jobs/jobs_request_builder.py index dad6829a7dc..0c4239f1c9c 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/jobs/jobs_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/jobs/jobs_request_builder.py @@ -40,7 +40,6 @@ def by_synchronization_job_id(self,synchronization_job_id: str) -> Synchronizati param synchronization_job_id: The unique identifier of synchronizationJob Returns: SynchronizationJobItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if synchronization_job_id is None: raise TypeError("synchronization_job_id cannot be null.") from .item.synchronization_job_item_request_builder import SynchronizationJobItemRequestBuilder @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[JobsRequ Returns: Optional[SynchronizationJobCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronization-list-jobs?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def post(self,body: SynchronizationJob, request_configuration: Optional[Re Returns: Optional[SynchronizationJob] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronization-post-jobs?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -102,7 +99,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_post_request_information(self,body: SynchronizationJob, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -130,7 +125,6 @@ def with_url(self,raw_url: str) -> JobsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: JobsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return JobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/ping/ping_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/ping/ping_request_builder.py index b68989f2505..f03d67054e8 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/ping/ping_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/ping/ping_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PingGetResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> PingRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PingRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PingRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/synchronization_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/synchronization_request_builder.py index a19483b4509..355c5414e9d 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/synchronization_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/synchronization_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Synchron param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Synchronization] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def put(self,body: Synchronization, request_configuration: Optional[Reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Synchronization] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_put_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_put_request_information(self,body: Synchronization, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PUT, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> SynchronizationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SynchronizationRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SynchronizationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/count/count_request_builder.py index 11d75c56311..5f85c2b098e 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/count/count_request_builder.py index 138f7abbc0d..1cbbe1761d3 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/directories_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/directories_request_builder.py index 7f11697e48a..2e5be6425ac 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/directories_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/directories_request_builder.py @@ -39,7 +39,6 @@ def by_directory_definition_id(self,directory_definition_id: str) -> DirectoryDe param directory_definition_id: The unique identifier of directoryDefinition Returns: DirectoryDefinitionItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if directory_definition_id is None: raise TypeError("directory_definition_id cannot be null.") from .item.directory_definition_item_request_builder import DirectoryDefinitionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryDefinitionCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: DirectoryDefinition, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryDefinition] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: DirectoryDefinition, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> DirectoriesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoriesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoriesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/item/directory_definition_item_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/item/directory_definition_item_request_builder.py index 30512fdc4e8..395d8cc4936 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/item/directory_definition_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/item/directory_definition_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryDefinition] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: DirectoryDefinition, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryDefinition] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: DirectoryDefinition, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> DirectoryDefinitionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoryDefinitionItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoryDefinitionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/item/discover/discover_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/item/discover/discover_request_builder.py index b6467f9ef33..2f8f5b5b9c3 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/item/discover/discover_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/directories/item/discover/discover_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[DirectoryDefinition] Find more info here: https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> DiscoverRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DiscoverRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DiscoverRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/filter_operators/filter_operators_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/filter_operators/filter_operators_request_builder.py index c14169fd041..fe998580607 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/filter_operators/filter_operators_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/filter_operators/filter_operators_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FilterOp Returns: Optional[FilterOperatorsGetResponse] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> FilterOperatorsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FilterOperatorsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FilterOperatorsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/functions/functions_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/functions/functions_request_builder.py index 30464457dd0..3ae3700986f 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/functions/functions_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/functions/functions_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Function Returns: Optional[FunctionsGetResponse] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> FunctionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: FunctionsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return FunctionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/parse_expression/parse_expression_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/parse_expression/parse_expression_request_builder.py index da6d970da9f..8e4b494e63a 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/parse_expression/parse_expression_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/parse_expression/parse_expression_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: ParseExpressionPostRequestBody, request_configuration: Returns: Optional[ParseExpressionResponse] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: ParseExpressionPostRequestBody, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> ParseExpressionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ParseExpressionRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ParseExpressionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/schema_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/schema_request_builder.py index b9ce12e686c..4af88388417 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/schema_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/schema/schema_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SchemaRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SynchronizationSchema] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: SynchronizationSchema, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SynchronizationSchema] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: SynchronizationSchema, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> SchemaRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SchemaRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SchemaRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/synchronization_template_item_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/synchronization_template_item_request_builder.py index 15c7c0a01e1..315aacb03b6 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/item/synchronization_template_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/item/synchronization_template_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Synchron param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SynchronizationTemplate] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: SynchronizationTemplate, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SynchronizationTemplate] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: SynchronizationTemplate, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> SynchronizationTemplateItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SynchronizationTemplateItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SynchronizationTemplateItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/synchronization/templates/templates_request_builder.py b/msgraph_beta/generated/service_principals/item/synchronization/templates/templates_request_builder.py index cd114537b38..6df675d2f31 100644 --- a/msgraph_beta/generated/service_principals/item/synchronization/templates/templates_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/synchronization/templates/templates_request_builder.py @@ -39,7 +39,6 @@ def by_synchronization_template_id(self,synchronization_template_id: str) -> Syn param synchronization_template_id: The unique identifier of synchronizationTemplate Returns: SynchronizationTemplateItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if synchronization_template_id is None: raise TypeError("synchronization_template_id cannot be null.") from .item.synchronization_template_item_request_builder import SynchronizationTemplateItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Template Returns: Optional[SynchronizationTemplateCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/synchronization-synchronization-list-templates?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: SynchronizationTemplate, request_configuration: Option param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SynchronizationTemplate] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: SynchronizationTemplate, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> TemplatesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TemplatesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TemplatesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/token_issuance_policies/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/token_issuance_policies/count/count_request_builder.py index 6c470556c46..d10ddef3e61 100644 --- a/msgraph_beta/generated/service_principals/item/token_issuance_policies/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/token_issuance_policies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/token_issuance_policies/item/ref/ref_request_builder.py b/msgraph_beta/generated/service_principals/item/token_issuance_policies/item/ref/ref_request_builder.py index f4d1c04ae65..86938c53302 100644 --- a/msgraph_beta/generated/service_principals/item/token_issuance_policies/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/token_issuance_policies/item/ref/ref_request_builder.py @@ -35,7 +35,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/token_issuance_policies/ref/ref_request_builder.py b/msgraph_beta/generated/service_principals/item/token_issuance_policies/ref/ref_request_builder.py index d6330d5ba71..98b5f63eb5e 100644 --- a/msgraph_beta/generated/service_principals/item/token_issuance_policies/ref/ref_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/token_issuance_policies/ref/ref_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[StringCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/tokenIssuancePolicies/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -111,7 +107,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -124,7 +119,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -139,7 +133,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/token_issuance_policies/token_issuance_policies_request_builder.py b/msgraph_beta/generated/service_principals/item/token_issuance_policies/token_issuance_policies_request_builder.py index 84690b6271a..cf79ebc134c 100644 --- a/msgraph_beta/generated/service_principals/item/token_issuance_policies/token_issuance_policies_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/token_issuance_policies/token_issuance_policies_request_builder.py @@ -53,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TokenIss param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[TokenIssuancePolicyCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +84,6 @@ def with_url(self,raw_url: str) -> TokenIssuancePoliciesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TokenIssuancePoliciesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TokenIssuancePoliciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/token_lifetime_policies/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/token_lifetime_policies/count/count_request_builder.py index 706437a027b..b45b8f8550b 100644 --- a/msgraph_beta/generated/service_principals/item/token_lifetime_policies/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/token_lifetime_policies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/token_lifetime_policies/item/ref/ref_request_builder.py b/msgraph_beta/generated/service_principals/item/token_lifetime_policies/item/ref/ref_request_builder.py index 088a3bca781..cd4dd5a8a6b 100644 --- a/msgraph_beta/generated/service_principals/item/token_lifetime_policies/item/ref/ref_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/token_lifetime_policies/item/ref/ref_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/token_lifetime_policies/ref/ref_request_builder.py b/msgraph_beta/generated/service_principals/item/token_lifetime_policies/ref/ref_request_builder.py index 4ea789d2b23..7006fa40ca3 100644 --- a/msgraph_beta/generated/service_principals/item/token_lifetime_policies/ref/ref_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/token_lifetime_policies/ref/ref_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[RefRe Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete-tokenlifetimepolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RefReque Returns: Optional[StringCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def post(self,body: ReferenceCreate, request_configuration: Optional[Reque Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-post-tokenlifetimepolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, '{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/tokenLifetimePolicies/$ref?@id={%40id}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_post_request_information(self,body: ReferenceCreate, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> RefRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RefRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RefRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/token_lifetime_policies/token_lifetime_policies_request_builder.py b/msgraph_beta/generated/service_principals/item/token_lifetime_policies/token_lifetime_policies_request_builder.py index e432971eeae..6799d479a2b 100644 --- a/msgraph_beta/generated/service_principals/item/token_lifetime_policies/token_lifetime_policies_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/token_lifetime_policies/token_lifetime_policies_request_builder.py @@ -54,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TokenLif Returns: Optional[TokenLifetimePolicyCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +74,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +85,6 @@ def with_url(self,raw_url: str) -> TokenLifetimePoliciesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TokenLifetimePoliciesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TokenLifetimePoliciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/count/count_request_builder.py index 509482130cf..6d366a9268e 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_administrative_unit/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_administrative_unit/count/count_request_builder.py index 5e998cc8727..23e42f135f4 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_administrative_unit/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_administrative_unit/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_administrative_unit/graph_administrative_unit_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_administrative_unit/graph_administrative_unit_request_builder.py index 89fa474ae2d..083a6ab9a43 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_administrative_unit/graph_administrative_unit_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_administrative_unit/graph_administrative_unit_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphAdm param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AdministrativeUnitCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphAdministrativeUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphAdministrativeUnitRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphAdministrativeUnitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_directory_role/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_directory_role/count/count_request_builder.py index 3542369fa23..30b0deded72 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_directory_role/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_directory_role/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_directory_role/graph_directory_role_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_directory_role/graph_directory_role_request_builder.py index 63dd85a1f64..0ea19dccf19 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_directory_role/graph_directory_role_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_directory_role/graph_directory_role_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphDir param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryRoleCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphDirectoryRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphDirectoryRoleRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphDirectoryRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_group/count/count_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_group/count/count_request_builder.py index 71f247b4346..2f428c4d884 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_group/count/count_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_group/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_group/graph_group_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_group/graph_group_request_builder.py index 04308b34de1..d66475ae9f1 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_group/graph_group_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/graph_group/graph_group_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphGro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GroupCollectionResponse] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphGroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphGroupRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphGroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/item/directory_object_item_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/item/directory_object_item_request_builder.py index adf803820f8..05a621c241b 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/item/directory_object_item_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/item/directory_object_item_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Director param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryObject] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> DirectoryObjectItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DirectoryObjectItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DirectoryObjectItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_administrative_unit/graph_administrative_unit_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_administrative_unit/graph_administrative_unit_request_builder.py index 1421a071f46..5aa90086b07 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_administrative_unit/graph_administrative_unit_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_administrative_unit/graph_administrative_unit_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphAdm param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AdministrativeUnit] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphAdministrativeUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphAdministrativeUnitRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphAdministrativeUnitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_directory_role/graph_directory_role_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_directory_role/graph_directory_role_request_builder.py index de2c86577e0..3d9479dc454 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_directory_role/graph_directory_role_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_directory_role/graph_directory_role_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphDir param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DirectoryRole] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphDirectoryRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphDirectoryRoleRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphDirectoryRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_group/graph_group_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_group/graph_group_request_builder.py index e15424ab1b3..3269c2b5b4d 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_group/graph_group_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/item/graph_group/graph_group_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphGro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[Group] """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> GraphGroupRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphGroupRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphGroupRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/transitive_member_of/transitive_member_of_request_builder.py b/msgraph_beta/generated/service_principals/item/transitive_member_of/transitive_member_of_request_builder.py index addda2c0701..967c62a0fab 100644 --- a/msgraph_beta/generated/service_principals/item/transitive_member_of/transitive_member_of_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/transitive_member_of/transitive_member_of_request_builder.py @@ -41,7 +41,6 @@ def by_directory_object_id(self,directory_object_id: str) -> DirectoryObjectItem param directory_object_id: The unique identifier of directoryObject Returns: DirectoryObjectItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if directory_object_id is None: raise TypeError("directory_object_id cannot be null.") from .item.directory_object_item_request_builder import DirectoryObjectItemRequestBuilder @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Transiti Returns: Optional[DirectoryObjectCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list-transitivememberof?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -90,7 +87,6 @@ def with_url(self,raw_url: str) -> TransitiveMemberOfRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TransitiveMemberOfRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TransitiveMemberOfRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/item/update_password_single_sign_on_credentials/update_password_single_sign_on_credentials_request_builder.py b/msgraph_beta/generated/service_principals/item/update_password_single_sign_on_credentials/update_password_single_sign_on_credentials_request_builder.py index fe249fdcd76..6186d60e9c8 100644 --- a/msgraph_beta/generated/service_principals/item/update_password_single_sign_on_credentials/update_password_single_sign_on_credentials_request_builder.py +++ b/msgraph_beta/generated/service_principals/item/update_password_single_sign_on_credentials/update_password_single_sign_on_credentials_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: UpdatePasswordSingleSignOnCredentialsPostRequestBody, Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-updatepasswordsinglesignoncredentials?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: UpdatePasswordSingleSignOnCredentials param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> UpdatePasswordSingleSignOnCredentialsRequestB param raw_url: The raw URL to use for the request builder. Returns: UpdatePasswordSingleSignOnCredentialsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UpdatePasswordSingleSignOnCredentialsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/service_principals_request_builder.py b/msgraph_beta/generated/service_principals/service_principals_request_builder.py index d358d58a232..ca7efd946a4 100644 --- a/msgraph_beta/generated/service_principals/service_principals_request_builder.py +++ b/msgraph_beta/generated/service_principals/service_principals_request_builder.py @@ -43,7 +43,6 @@ def by_service_principal_id(self,service_principal_id: str) -> ServicePrincipalI param service_principal_id: The unique identifier of servicePrincipal Returns: ServicePrincipalItemRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if service_principal_id is None: raise TypeError("service_principal_id cannot be null.") from .item.service_principal_item_request_builder import ServicePrincipalItemRequestBuilder @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP Returns: Optional[ServicePrincipalCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def post(self,body: ServicePrincipal, request_configuration: Optional[Requ Returns: Optional[ServicePrincipal] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -105,7 +102,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_post_request_information(self,body: ServicePrincipal, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -133,7 +128,6 @@ def with_url(self,raw_url: str) -> ServicePrincipalsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServicePrincipalsRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServicePrincipalsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals/validate_properties/validate_properties_request_builder.py b/msgraph_beta/generated/service_principals/validate_properties/validate_properties_request_builder.py index e7bfc5cf3a6..fe3d5162c3b 100644 --- a/msgraph_beta/generated/service_principals/validate_properties/validate_properties_request_builder.py +++ b/msgraph_beta/generated/service_principals/validate_properties/validate_properties_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: ValidatePropertiesPostRequestBody, request_configurati Returns: None Find more info here: https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: ValidatePropertiesPostRequestBody, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> ValidatePropertiesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ValidatePropertiesRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ValidatePropertiesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/service_principals_with_app_id/service_principals_with_app_id_request_builder.py b/msgraph_beta/generated/service_principals_with_app_id/service_principals_with_app_id_request_builder.py index 94745dc61d2..66acd1c0953 100644 --- a/msgraph_beta/generated/service_principals_with_app_id/service_principals_with_app_id_request_builder.py +++ b/msgraph_beta/generated/service_principals_with_app_id/service_principals_with_app_id_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceP Returns: Optional[ServicePrincipal] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: ServicePrincipal, request_configuration: Optional[Req Returns: Optional[ServicePrincipal] Find more info here: https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-beta """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: ServicePrincipal, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> ServicePrincipalsWithAppIdRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServicePrincipalsWithAppIdRequestBuilder """ - warn("Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServicePrincipalsWithAppIdRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_items/approval_items_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_items/approval_items_request_builder.py index 4947c62bb43..a71b0c09b5a 100644 --- a/msgraph_beta/generated/solutions/approval/approval_items/approval_items_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_items/approval_items_request_builder.py @@ -39,7 +39,6 @@ def by_approval_item_id(self,approval_item_id: str) -> ApprovalItemItemRequestBu param approval_item_id: The unique identifier of approvalItem Returns: ApprovalItemItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if approval_item_id is None: raise TypeError("approval_item_id cannot be null.") from .item.approval_item_item_request_builder import ApprovalItemItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval Returns: Optional[ApprovalItemCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/approvalsolution-list-approvalitems?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: ApprovalItem, request_configuration: Optional[RequestC Returns: Optional[ApprovalItem] Find more info here: https://learn.microsoft.com/graph/api/approvalsolution-post-approvalitems?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: ApprovalItem, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> ApprovalItemsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalItemsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalItemsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_items/count/count_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_items/count/count_request_builder.py index 2f8b8b4462e..12773585033 100644 --- a/msgraph_beta/generated/solutions/approval/approval_items/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_items/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_items/item/approval_item_item_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_items/item/approval_item_item_request_builder.py index df6af3f7ecb..c2f9d7dedec 100644 --- a/msgraph_beta/generated/solutions/approval/approval_items/item/approval_item_item_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_items/item/approval_item_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval Returns: Optional[ApprovalItem] Find more info here: https://learn.microsoft.com/graph/api/approvalitem-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: ApprovalItem, request_configuration: Optional[Request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalItem] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: ApprovalItem, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> ApprovalItemItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalItemItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalItemItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_items/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_items/item/cancel/cancel_request_builder.py index c1d44dd788d..71261c6b4d6 100644 --- a/msgraph_beta/generated/solutions/approval/approval_items/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_items/item/cancel/cancel_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/approvalitem-cancel?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_items/item/requests/count/count_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_items/item/requests/count/count_request_builder.py index 110f6a9c224..08ba8cbc4f9 100644 --- a/msgraph_beta/generated/solutions/approval/approval_items/item/requests/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_items/item/requests/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_items/item/requests/item/approval_item_request_item_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_items/item/requests/item/approval_item_request_item_request_builder.py index d5571dc13c0..13b5c313031 100644 --- a/msgraph_beta/generated/solutions/approval/approval_items/item/requests/item/approval_item_request_item_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_items/item/requests/item/approval_item_request_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval Returns: Optional[ApprovalItemRequest] Find more info here: https://learn.microsoft.com/graph/api/approvalitemrequest-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: ApprovalItemRequest, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalItemRequest] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: ApprovalItemRequest, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> ApprovalItemRequestItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalItemRequestItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalItemRequestItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_items/item/requests/requests_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_items/item/requests/requests_request_builder.py index 733709236cf..81e20994b72 100644 --- a/msgraph_beta/generated/solutions/approval/approval_items/item/requests/requests_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_items/item/requests/requests_request_builder.py @@ -39,7 +39,6 @@ def by_approval_item_request_id(self,approval_item_request_id: str) -> ApprovalI param approval_item_request_id: The unique identifier of approvalItemRequest Returns: ApprovalItemRequestItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if approval_item_request_id is None: raise TypeError("approval_item_request_id cannot be null.") from .item.approval_item_request_item_request_builder import ApprovalItemRequestItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Requests Returns: Optional[ApprovalItemRequestCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/approvalitem-list-requests?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: ApprovalItemRequest, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalItemRequest] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: ApprovalItemRequest, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> RequestsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RequestsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RequestsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_items/item/responses/count/count_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_items/item/responses/count/count_request_builder.py index 32f93671903..08333b2d75c 100644 --- a/msgraph_beta/generated/solutions/approval/approval_items/item/responses/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_items/item/responses/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_items/item/responses/item/approval_item_response_item_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_items/item/responses/item/approval_item_response_item_request_builder.py index dc8034f376c..dfdb9a6a9b3 100644 --- a/msgraph_beta/generated/solutions/approval/approval_items/item/responses/item/approval_item_response_item_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_items/item/responses/item/approval_item_response_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval Returns: Optional[ApprovalItemResponse] Find more info here: https://learn.microsoft.com/graph/api/approvalitemresponse-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: ApprovalItemResponse, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalItemResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: ApprovalItemResponse, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> ApprovalItemResponseItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalItemResponseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalItemResponseItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_items/item/responses/responses_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_items/item/responses/responses_request_builder.py index e16b145a48a..ff6cfafd6d2 100644 --- a/msgraph_beta/generated/solutions/approval/approval_items/item/responses/responses_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_items/item/responses/responses_request_builder.py @@ -39,7 +39,6 @@ def by_approval_item_response_id(self,approval_item_response_id: str) -> Approva param approval_item_response_id: The unique identifier of approvalItemResponse Returns: ApprovalItemResponseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if approval_item_response_id is None: raise TypeError("approval_item_response_id cannot be null.") from .item.approval_item_response_item_request_builder import ApprovalItemResponseItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Response Returns: Optional[ApprovalItemResponseCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/approvalitem-list-responses?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: ApprovalItemResponse, request_configuration: Optional[ Returns: Optional[ApprovalItemResponse] Find more info here: https://learn.microsoft.com/graph/api/approvalitem-post-responses?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: ApprovalItemResponse, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> ResponsesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ResponsesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ResponsesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/approval_request_builder.py b/msgraph_beta/generated/solutions/approval/approval_request_builder.py index 08f1ff22111..fff30c493e3 100644 --- a/msgraph_beta/generated/solutions/approval/approval_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/approval_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval Returns: Optional[ApprovalSolution] Find more info here: https://learn.microsoft.com/graph/api/approvalsolution-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: ApprovalSolution, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalSolution] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: ApprovalSolution, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> ApprovalRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/operations/count/count_request_builder.py b/msgraph_beta/generated/solutions/approval/operations/count/count_request_builder.py index a5d87aa0f50..5ffff0adfb5 100644 --- a/msgraph_beta/generated/solutions/approval/operations/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/operations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/operations/item/approval_operation_item_request_builder.py b/msgraph_beta/generated/solutions/approval/operations/item/approval_operation_item_request_builder.py index 2066c0e3178..6073ffdcd9c 100644 --- a/msgraph_beta/generated/solutions/approval/operations/item/approval_operation_item_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/operations/item/approval_operation_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Approval Returns: Optional[ApprovalOperation] Find more info here: https://learn.microsoft.com/graph/api/approvaloperation-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: ApprovalOperation, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalOperation] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: ApprovalOperation, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> ApprovalOperationItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ApprovalOperationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ApprovalOperationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/operations/operations_request_builder.py b/msgraph_beta/generated/solutions/approval/operations/operations_request_builder.py index ce7f0441580..36b4f613a58 100644 --- a/msgraph_beta/generated/solutions/approval/operations/operations_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/operations/operations_request_builder.py @@ -39,7 +39,6 @@ def by_approval_operation_id(self,approval_operation_id: str) -> ApprovalOperati param approval_operation_id: The unique identifier of approvalOperation Returns: ApprovalOperationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if approval_operation_id is None: raise TypeError("approval_operation_id cannot be null.") from .item.approval_operation_item_request_builder import ApprovalOperationItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Operatio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalOperationCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: ApprovalOperation, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ApprovalOperation] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: ApprovalOperation, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> OperationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: OperationsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OperationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/approval/provision/provision_request_builder.py b/msgraph_beta/generated/solutions/approval/provision/provision_request_builder.py index 1ab5c09f168..9e3f33ed854 100644 --- a/msgraph_beta/generated/solutions/approval/provision/provision_request_builder.py +++ b/msgraph_beta/generated/solutions/approval/provision/provision_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/approvalsolution-provision?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> ProvisionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ProvisionRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ProvisionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/activity_logs/activity_logs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/activity_logs/activity_logs_request_builder.py index 83be80d6edc..c6a8a3e4f88 100644 --- a/msgraph_beta/generated/solutions/backup_restore/activity_logs/activity_logs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/activity_logs/activity_logs_request_builder.py @@ -39,7 +39,6 @@ def by_activity_log_base_id(self,activity_log_base_id: str) -> ActivityLogBaseIt param activity_log_base_id: The unique identifier of activityLogBase Returns: ActivityLogBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if activity_log_base_id is None: raise TypeError("activity_log_base_id cannot be null.") from .item.activity_log_base_item_request_builder import ActivityLogBaseItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Activity param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ActivityLogBaseCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: ActivityLogBase, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ActivityLogBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: ActivityLogBase, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> ActivityLogsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ActivityLogsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ActivityLogsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/activity_logs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/activity_logs/count/count_request_builder.py index 4c8fa21a2ea..2eb87a972fe 100644 --- a/msgraph_beta/generated/solutions/backup_restore/activity_logs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/activity_logs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/activity_logs/item/activity_log_base_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/activity_logs/item/activity_log_base_item_request_builder.py index 1a19f6382e8..2df5bf3d978 100644 --- a/msgraph_beta/generated/solutions/backup_restore/activity_logs/item/activity_log_base_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/activity_logs/item/activity_log_base_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Activity param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ActivityLogBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: ActivityLogBase, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ActivityLogBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: ActivityLogBase, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> ActivityLogBaseItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ActivityLogBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ActivityLogBaseItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/backup_restore_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/backup_restore_request_builder.py index ee41f4831f0..9942aef7afe 100644 --- a/msgraph_beta/generated/solutions/backup_restore/backup_restore_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/backup_restore_request_builder.py @@ -70,7 +70,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -90,7 +89,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BackupRe Returns: Optional[BackupRestoreRoot] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -112,7 +110,6 @@ async def patch(self,body: BackupRestoreRoot, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BackupRestoreRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -135,7 +132,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -147,7 +143,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -160,7 +155,6 @@ def to_patch_request_information(self,body: BackupRestoreRoot, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -175,7 +169,6 @@ def with_url(self,raw_url: str) -> BackupRestoreRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BackupRestoreRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BackupRestoreRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/browse_sessions/browse_sessions_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/browse_sessions/browse_sessions_request_builder.py index bdcc4059471..22d2f285020 100644 --- a/msgraph_beta/generated/solutions/backup_restore/browse_sessions/browse_sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/browse_sessions/browse_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_browse_session_base_id(self,browse_session_base_id: str) -> BrowseSession param browse_session_base_id: The unique identifier of browseSessionBase Returns: BrowseSessionBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if browse_session_base_id is None: raise TypeError("browse_session_base_id cannot be null.") from .item.browse_session_base_item_request_builder import BrowseSessionBaseItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BrowseSe Returns: Optional[BrowseSessionBaseCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-browsesessions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: BrowseSessionBase, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BrowseSessionBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: BrowseSessionBase, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> BrowseSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BrowseSessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BrowseSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/browse_sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/browse_sessions/count/count_request_builder.py index 5f859b05e43..65583de00af 100644 --- a/msgraph_beta/generated/solutions/backup_restore/browse_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/browse_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse/browse_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse/browse_request_builder.py index a2566f91add..c33cabc08f4 100644 --- a/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse/browse_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse/browse_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: BrowsePostRequestBody, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BrowsePostResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -62,7 +61,6 @@ def to_post_request_information(self,body: BrowsePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -77,7 +75,6 @@ def with_url(self,raw_url: str) -> BrowseRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BrowseRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BrowseRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse_session_base_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse_session_base_item_request_builder.py index c260eb176b1..5860b1eac6b 100644 --- a/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse_session_base_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse_session_base_item_request_builder.py @@ -38,7 +38,6 @@ def browse_with_next_fetch_token(self,next_fetch_token: str) -> BrowseWithNextFe param next_fetch_token: Usage: nextFetchToken='{nextFetchToken}' Returns: BrowseWithNextFetchTokenRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if next_fetch_token is None: raise TypeError("next_fetch_token cannot be null.") from .browse_with_next_fetch_token.browse_with_next_fetch_token_request_builder import BrowseWithNextFetchTokenRequestBuilder @@ -51,7 +50,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -70,7 +68,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BrowseSe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BrowseSessionBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -92,7 +89,6 @@ async def patch(self,body: BrowseSessionBase, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BrowseSessionBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -115,7 +111,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -140,7 +134,6 @@ def to_patch_request_information(self,body: BrowseSessionBase, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -155,7 +148,6 @@ def with_url(self,raw_url: str) -> BrowseSessionBaseItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BrowseSessionBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BrowseSessionBaseItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse_with_next_fetch_token/browse_with_next_fetch_token_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse_with_next_fetch_token/browse_with_next_fetch_token_request_builder.py index 39032626d7d..23d11c59e28 100644 --- a/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse_with_next_fetch_token/browse_with_next_fetch_token_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/browse_sessions/item/browse_with_next_fetch_token/browse_with_next_fetch_token_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BrowseWi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BrowseWithNextFetchTokenGetResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> BrowseWithNextFetchTokenRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BrowseWithNextFetchTokenRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BrowseWithNextFetchTokenRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/count/count_request_builder.py index a1c87fe61b9..a12caaabdd1 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/drive_exclusion_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/drive_exclusion_units_request_builder.py index 3bf180bda44..7cd966d5e28 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/drive_exclusion_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/drive_exclusion_units_request_builder.py @@ -39,7 +39,6 @@ def by_drive_exclusion_unit_id(self,drive_exclusion_unit_id: str) -> DriveExclus param drive_exclusion_unit_id: The unique identifier of driveExclusionUnit Returns: DriveExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_exclusion_unit_id is None: raise TypeError("drive_exclusion_unit_id cannot be null.") from .item.drive_exclusion_unit_item_request_builder import DriveExclusionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveExc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveExclusionUnitCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: DriveExclusionUnit, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveExclusionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: DriveExclusionUnit, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> DriveExclusionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveExclusionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveExclusionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/item/drive_exclusion_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/item/drive_exclusion_unit_item_request_builder.py index 3506bd65682..db261d869a5 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/item/drive_exclusion_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units/item/drive_exclusion_unit_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveExc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveExclusionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: DriveExclusionUnit, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveExclusionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: DriveExclusionUnit, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> DriveExclusionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveExclusionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/count/count_request_builder.py index 6ef38552948..11bfddfcef0 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/drive_exclusion_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/drive_exclusion_units_bulk_addition_jobs_request_builder.py index 3b22ed6dfcd..a3b079a351f 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/drive_exclusion_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/drive_exclusion_units_bulk_addition_jobs_request_builder.py @@ -39,7 +39,6 @@ def by_drive_exclusion_units_bulk_addition_job_id(self,drive_exclusion_units_bul param drive_exclusion_units_bulk_addition_job_id: The unique identifier of driveExclusionUnitsBulkAdditionJob Returns: DriveExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_exclusion_units_bulk_addition_job_id is None: raise TypeError("drive_exclusion_units_bulk_addition_job_id cannot be null.") from .item.drive_exclusion_units_bulk_addition_job_item_request_builder import DriveExclusionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveExc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveExclusionUnitsBulkAdditionJobCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: DriveExclusionUnitsBulkAdditionJob, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveExclusionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: DriveExclusionUnitsBulkAdditionJob, r param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> DriveExclusionUnitsBulkAdditionJobsRequestBui param raw_url: The raw URL to use for the request builder. Returns: DriveExclusionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveExclusionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/item/drive_exclusion_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/item/drive_exclusion_units_bulk_addition_job_item_request_builder.py index c386d11b4d7..62125a7126f 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/item/drive_exclusion_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_exclusion_units_bulk_addition_jobs/item/drive_exclusion_units_bulk_addition_job_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveExc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveExclusionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: DriveExclusionUnitsBulkAdditionJob, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveExclusionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: DriveExclusionUnitsBulkAdditionJob, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> DriveExclusionUnitsBulkAdditionJobItemRequest param raw_url: The raw URL to use for the request builder. Returns: DriveExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveExclusionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/count/count_request_builder.py index b41861b56ee..1f46862e287 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/drive_inclusion_rules_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/drive_inclusion_rules_request_builder.py index edef999f7f1..993473d501a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/drive_inclusion_rules_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/drive_inclusion_rules_request_builder.py @@ -39,7 +39,6 @@ def by_drive_protection_rule_id(self,drive_protection_rule_id: str) -> DriveProt param drive_protection_rule_id: The unique identifier of driveProtectionRule Returns: DriveProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_protection_rule_id is None: raise TypeError("drive_protection_rule_id cannot be null.") from .item.drive_protection_rule_item_request_builder import DriveProtectionRuleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveInc param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionRuleCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: DriveProtectionRule, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionRule] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: DriveProtectionRule, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> DriveInclusionRulesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveInclusionRulesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveInclusionRulesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/item/drive_protection_rule_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/item/drive_protection_rule_item_request_builder.py index 1797f045ccc..5286a24759e 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/item/drive_protection_rule_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_inclusion_rules/item/drive_protection_rule_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DrivePro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionRule] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: DriveProtectionRule, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionRule] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: DriveProtectionRule, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> DriveProtectionRuleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveProtectionRuleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/count/count_request_builder.py index 128853e2050..e5010ad6519 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/drive_protection_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/drive_protection_units_request_builder.py index 62124a2c070..548ab194b36 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/drive_protection_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/drive_protection_units_request_builder.py @@ -39,7 +39,6 @@ def by_drive_protection_unit_id(self,drive_protection_unit_id: str) -> DriveProt param drive_protection_unit_id: The unique identifier of driveProtectionUnit Returns: DriveProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_protection_unit_id is None: raise TypeError("drive_protection_unit_id cannot be null.") from .item.drive_protection_unit_item_request_builder import DriveProtectionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DrivePro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionUnitCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: DriveProtectionUnit, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: DriveProtectionUnit, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> DriveProtectionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveProtectionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveProtectionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/item/drive_protection_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/item/drive_protection_unit_item_request_builder.py index 8a5d2619810..ee1893cc50e 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/item/drive_protection_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units/item/drive_protection_unit_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DrivePro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: DriveProtectionUnit, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: DriveProtectionUnit, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> DriveProtectionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveProtectionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/count/count_request_builder.py index 8cb80626343..5198943501f 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/drive_protection_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/drive_protection_units_bulk_addition_jobs_request_builder.py index c3da520dd26..202f8a041af 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/drive_protection_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/drive_protection_units_bulk_addition_jobs_request_builder.py @@ -39,7 +39,6 @@ def by_drive_protection_units_bulk_addition_job_id(self,drive_protection_units_b param drive_protection_units_bulk_addition_job_id: The unique identifier of driveProtectionUnitsBulkAdditionJob Returns: DriveProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_protection_units_bulk_addition_job_id is None: raise TypeError("drive_protection_units_bulk_addition_job_id cannot be null.") from .item.drive_protection_units_bulk_addition_job_item_request_builder import DriveProtectionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DrivePro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionUnitsBulkAdditionJobCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: DriveProtectionUnitsBulkAdditionJob, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: DriveProtectionUnitsBulkAdditionJob, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> DriveProtectionUnitsBulkAdditionJobsRequestBu param raw_url: The raw URL to use for the request builder. Returns: DriveProtectionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveProtectionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/item/drive_protection_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/item/drive_protection_units_bulk_addition_job_item_request_builder.py index eeb29c12046..cda98dfb64c 100644 --- a/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/item/drive_protection_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/drive_protection_units_bulk_addition_jobs/item/drive_protection_units_bulk_addition_job_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DrivePro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: DriveProtectionUnitsBulkAdditionJob, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: DriveProtectionUnitsBulkAdditionJob, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> DriveProtectionUnitsBulkAdditionJobItemReques param raw_url: The raw URL to use for the request builder. Returns: DriveProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveProtectionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/email_notifications_setting/email_notifications_setting_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/email_notifications_setting/email_notifications_setting_request_builder.py index 9da6ef2341f..924c7e7cca0 100644 --- a/msgraph_beta/generated/solutions/backup_restore/email_notifications_setting/email_notifications_setting_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/email_notifications_setting/email_notifications_setting_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[EmailNot Returns: Optional[EmailNotificationsSetting] Find more info here: https://learn.microsoft.com/graph/api/emailnotificationssetting-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: EmailNotificationsSetting, request_configuration: Opt Returns: Optional[EmailNotificationsSetting] Find more info here: https://learn.microsoft.com/graph/api/emailnotificationssetting-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: EmailNotificationsSetting, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> EmailNotificationsSettingRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: EmailNotificationsSettingRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return EmailNotificationsSettingRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/enable/enable_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/enable/enable_request_builder.py index 81b276dc762..fd3d69018b5 100644 --- a/msgraph_beta/generated/solutions/backup_restore/enable/enable_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/enable/enable_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: EnablePostRequestBody, request_configuration: Optional Returns: Optional[ServiceStatus] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-enable?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: EnablePostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> EnableRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: EnableRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return EnableRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/count/count_request_builder.py index 0fb5b3f528e..44a88d6fca0 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/exchange_protection_policies_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/exchange_protection_policies_request_builder.py index 7de8a6e3fca..fb3caded68d 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/exchange_protection_policies_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/exchange_protection_policies_request_builder.py @@ -39,7 +39,6 @@ def by_exchange_protection_policy_id(self,exchange_protection_policy_id: str) -> param exchange_protection_policy_id: The unique identifier of exchangeProtectionPolicy Returns: ExchangeProtectionPolicyItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if exchange_protection_policy_id is None: raise TypeError("exchange_protection_policy_id cannot be null.") from .item.exchange_protection_policy_item_request_builder import ExchangeProtectionPolicyItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Exchange param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExchangeProtectionPolicyCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: ExchangeProtectionPolicy, request_configuration: Optio Returns: Optional[ExchangeProtectionPolicy] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangeprotectionpolicies?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: ExchangeProtectionPolicy, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> ExchangeProtectionPoliciesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ExchangeProtectionPoliciesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExchangeProtectionPoliciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/exchange_protection_policy_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/exchange_protection_policy_item_request_builder.py index ae311768550..6b9f227ae10 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/exchange_protection_policy_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/exchange_protection_policy_item_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Exchange param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExchangeProtectionPolicy] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: ExchangeProtectionPolicy, request_configuration: Opti Returns: Optional[ExchangeProtectionPolicy] Find more info here: https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: ExchangeProtectionPolicy, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> ExchangeProtectionPolicyItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ExchangeProtectionPolicyItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExchangeProtectionPolicyItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/count/count_request_builder.py index 4fa99744c7a..6a3da1a6c1a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/item/mailbox_exclusion_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/item/mailbox_exclusion_unit_item_request_builder.py index 2a5e0ef6bcc..a468925a96d 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/item/mailbox_exclusion_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/item/mailbox_exclusion_unit_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxE Returns: Optional[MailboxExclusionUnit] Find more info here: https://learn.microsoft.com/graph/api/mailboxexclusionunit-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> MailboxExclusionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxExclusionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/mailbox_exclusion_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/mailbox_exclusion_units_request_builder.py index c139723e626..252d5ea796a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/mailbox_exclusion_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units/mailbox_exclusion_units_request_builder.py @@ -38,7 +38,6 @@ def by_mailbox_exclusion_unit_id(self,mailbox_exclusion_unit_id: str) -> Mailbox param mailbox_exclusion_unit_id: The unique identifier of mailboxExclusionUnit Returns: MailboxExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_exclusion_unit_id is None: raise TypeError("mailbox_exclusion_unit_id cannot be null.") from .item.mailbox_exclusion_unit_item_request_builder import MailboxExclusionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxE Returns: Optional[MailboxExclusionUnitCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxexclusionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> MailboxExclusionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxExclusionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxExclusionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/count/count_request_builder.py index 6561dca6fb0..188cc578780 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/item/mailbox_exclusion_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/item/mailbox_exclusion_units_bulk_addition_job_item_request_builder.py index 72ac4a10336..a3d1805553d 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/item/mailbox_exclusion_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/item/mailbox_exclusion_units_bulk_addition_job_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxE Returns: Optional[MailboxExclusionUnitsBulkAdditionJob] Find more info here: https://learn.microsoft.com/graph/api/mailboxexclusionunitsbulkadditionjob-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> MailboxExclusionUnitsBulkAdditionJobItemReque param raw_url: The raw URL to use for the request builder. Returns: MailboxExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxExclusionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/mailbox_exclusion_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/mailbox_exclusion_units_bulk_addition_jobs_request_builder.py index 74e3f4235c9..2eb0c80da28 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/mailbox_exclusion_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_exclusion_units_bulk_addition_jobs/mailbox_exclusion_units_bulk_addition_jobs_request_builder.py @@ -38,7 +38,6 @@ def by_mailbox_exclusion_units_bulk_addition_job_id(self,mailbox_exclusion_units param mailbox_exclusion_units_bulk_addition_job_id: The unique identifier of mailboxExclusionUnitsBulkAdditionJob Returns: MailboxExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_exclusion_units_bulk_addition_job_id is None: raise TypeError("mailbox_exclusion_units_bulk_addition_job_id cannot be null.") from .item.mailbox_exclusion_units_bulk_addition_job_item_request_builder import MailboxExclusionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxE Returns: Optional[MailboxExclusionUnitsBulkAdditionJobCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxexclusionunitsbulkadditionjobs?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> MailboxExclusionUnitsBulkAdditionJobsRequestB param raw_url: The raw URL to use for the request builder. Returns: MailboxExclusionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxExclusionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/count/count_request_builder.py index f2bdb04978d..b06be031381 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/item/mailbox_protection_rule_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/item/mailbox_protection_rule_item_request_builder.py index a5692649447..e4670e8e25a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/item/mailbox_protection_rule_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/item/mailbox_protection_rule_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxP Returns: Optional[MailboxProtectionRule] Find more info here: https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> MailboxProtectionRuleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxProtectionRuleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/mailbox_inclusion_rules_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/mailbox_inclusion_rules_request_builder.py index f8f695f0db0..c3a744a6c5b 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/mailbox_inclusion_rules_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_inclusion_rules/mailbox_inclusion_rules_request_builder.py @@ -38,7 +38,6 @@ def by_mailbox_protection_rule_id(self,mailbox_protection_rule_id: str) -> Mailb param mailbox_protection_rule_id: The unique identifier of mailboxProtectionRule Returns: MailboxProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_protection_rule_id is None: raise TypeError("mailbox_protection_rule_id cannot be null.") from .item.mailbox_protection_rule_item_request_builder import MailboxProtectionRuleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxI Returns: Optional[MailboxProtectionRuleCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxinclusionrules?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> MailboxInclusionRulesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxInclusionRulesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxInclusionRulesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/count/count_request_builder.py index 4f83dbc4031..b48e3ee46b6 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/item/mailbox_protection_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/item/mailbox_protection_unit_item_request_builder.py index 42a942f31e8..93f0790abb5 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/item/mailbox_protection_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/item/mailbox_protection_unit_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> MailboxProtectionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxProtectionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/mailbox_protection_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/mailbox_protection_units_request_builder.py index 97fbd03bc98..468602ad9b5 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/mailbox_protection_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units/mailbox_protection_units_request_builder.py @@ -38,7 +38,6 @@ def by_mailbox_protection_unit_id(self,mailbox_protection_unit_id: str) -> Mailb param mailbox_protection_unit_id: The unique identifier of mailboxProtectionUnit Returns: MailboxProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_protection_unit_id is None: raise TypeError("mailbox_protection_unit_id cannot be null.") from .item.mailbox_protection_unit_item_request_builder import MailboxProtectionUnitItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionUnitCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> MailboxProtectionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxProtectionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxProtectionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/count/count_request_builder.py index 92716016d5e..9cd325cae6a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/item/mailbox_protection_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/item/mailbox_protection_units_bulk_addition_job_item_request_builder.py index 0e2b6c9cfcd..fcb4903ed65 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/item/mailbox_protection_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/item/mailbox_protection_units_bulk_addition_job_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxP Returns: Optional[MailboxProtectionUnitsBulkAdditionJob] Find more info here: https://learn.microsoft.com/graph/api/mailboxprotectionunitsbulkadditionjobs-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> MailboxProtectionUnitsBulkAdditionJobItemRequ param raw_url: The raw URL to use for the request builder. Returns: MailboxProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxProtectionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/mailbox_protection_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/mailbox_protection_units_bulk_addition_jobs_request_builder.py index bc34a4f8c35..2f62e9f8bef 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/mailbox_protection_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_protection_policies/item/mailbox_protection_units_bulk_addition_jobs/mailbox_protection_units_bulk_addition_jobs_request_builder.py @@ -38,7 +38,6 @@ def by_mailbox_protection_units_bulk_addition_job_id(self,mailbox_protection_uni param mailbox_protection_units_bulk_addition_job_id: The unique identifier of mailboxProtectionUnitsBulkAdditionJob Returns: MailboxProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_protection_units_bulk_addition_job_id is None: raise TypeError("mailbox_protection_units_bulk_addition_job_id cannot be null.") from .item.mailbox_protection_units_bulk_addition_job_item_request_builder import MailboxProtectionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxP Returns: Optional[MailboxProtectionUnitsBulkAdditionJobCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxprotectionunitsbulkadditionjobs?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> MailboxProtectionUnitsBulkAdditionJobsRequest param raw_url: The raw URL to use for the request builder. Returns: MailboxProtectionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxProtectionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/count/count_request_builder.py index 92a4aadfe70..01ae21d6b97 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/exchange_restore_sessions_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/exchange_restore_sessions_request_builder.py index 75d19c98a96..8e1a0a5188b 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/exchange_restore_sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/exchange_restore_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_exchange_restore_session_id(self,exchange_restore_session_id: str) -> Exc param exchange_restore_session_id: The unique identifier of exchangeRestoreSession Returns: ExchangeRestoreSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if exchange_restore_session_id is None: raise TypeError("exchange_restore_session_id cannot be null.") from .item.exchange_restore_session_item_request_builder import ExchangeRestoreSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Exchange param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExchangeRestoreSessionCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: ExchangeRestoreSession, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExchangeRestoreSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: ExchangeRestoreSession, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> ExchangeRestoreSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ExchangeRestoreSessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExchangeRestoreSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/exchange_restore_session_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/exchange_restore_session_item_request_builder.py index ed6da544a1e..bd04c42116a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/exchange_restore_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/exchange_restore_session_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Exchange param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExchangeRestoreSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: ExchangeRestoreSession, request_configuration: Option Returns: Optional[ExchangeRestoreSession] Find more info here: https://learn.microsoft.com/graph/api/exchangerestoresession-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: ExchangeRestoreSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> ExchangeRestoreSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ExchangeRestoreSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExchangeRestoreSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/count/count_request_builder.py index 4d752f864d1..35677304591 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/granular_mailbox_restore_artifacts_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/granular_mailbox_restore_artifacts_request_builder.py index 66e541c6250..878499daa91 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/granular_mailbox_restore_artifacts_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/granular_mailbox_restore_artifacts_request_builder.py @@ -39,7 +39,6 @@ def by_granular_mailbox_restore_artifact_id(self,granular_mailbox_restore_artifa param granular_mailbox_restore_artifact_id: The unique identifier of granularMailboxRestoreArtifact Returns: GranularMailboxRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if granular_mailbox_restore_artifact_id is None: raise TypeError("granular_mailbox_restore_artifact_id cannot be null.") from .item.granular_mailbox_restore_artifact_item_request_builder import GranularMailboxRestoreArtifactItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Granular param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GranularMailboxRestoreArtifactCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: GranularMailboxRestoreArtifact, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GranularMailboxRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: GranularMailboxRestoreArtifact, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> GranularMailboxRestoreArtifactsRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: GranularMailboxRestoreArtifactsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GranularMailboxRestoreArtifactsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/item/granular_mailbox_restore_artifact_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/item/granular_mailbox_restore_artifact_item_request_builder.py index 4ec4d833537..abea7753177 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/item/granular_mailbox_restore_artifact_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/item/granular_mailbox_restore_artifact_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Granular param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GranularMailboxRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: GranularMailboxRestoreArtifact, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GranularMailboxRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: GranularMailboxRestoreArtifact, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> GranularMailboxRestoreArtifactItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: GranularMailboxRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GranularMailboxRestoreArtifactItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/item/restore_point/restore_point_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/item/restore_point/restore_point_request_builder.py index 475cb0c4a8b..164ac7bd1b8 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/item/restore_point/restore_point_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/granular_mailbox_restore_artifacts/item/restore_point/restore_point_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RestoreP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestorePoint] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RestorePointRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RestorePointRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RestorePointRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/count/count_request_builder.py index 62d9d5f5e4b..c9110811e76 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/item/mailbox_restore_artifact_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/item/mailbox_restore_artifact_item_request_builder.py index 329e80ca8f8..e897c9dbafe 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/item/mailbox_restore_artifact_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/item/mailbox_restore_artifact_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: MailboxRestoreArtifact, request_configuration: Option param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: MailboxRestoreArtifact, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> MailboxRestoreArtifactItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxRestoreArtifactItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/item/restore_point/restore_point_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/item/restore_point/restore_point_request_builder.py index e8eccfe67e7..1e68dee26fd 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/item/restore_point/restore_point_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/item/restore_point/restore_point_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RestoreP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestorePoint] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RestorePointRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RestorePointRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RestorePointRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/mailbox_restore_artifacts_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/mailbox_restore_artifacts_request_builder.py index ec77a17bf50..64ac6477652 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/mailbox_restore_artifacts_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts/mailbox_restore_artifacts_request_builder.py @@ -39,7 +39,6 @@ def by_mailbox_restore_artifact_id(self,mailbox_restore_artifact_id: str) -> Mai param mailbox_restore_artifact_id: The unique identifier of mailboxRestoreArtifact Returns: MailboxRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_restore_artifact_id is None: raise TypeError("mailbox_restore_artifact_id cannot be null.") from .item.mailbox_restore_artifact_item_request_builder import MailboxRestoreArtifactItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxR Returns: Optional[MailboxRestoreArtifactCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifacts?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: MailboxRestoreArtifact, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: MailboxRestoreArtifact, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> MailboxRestoreArtifactsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxRestoreArtifactsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxRestoreArtifactsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/count/count_request_builder.py index 1e3cd78b879..80eb3a719b8 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/item/mailbox_restore_artifacts_bulk_addition_request_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/item/mailbox_restore_artifacts_bulk_addition_request_item_request_builder.py index 68a330c6205..988a8acf848 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/item/mailbox_restore_artifacts_bulk_addition_request_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/item/mailbox_restore_artifacts_bulk_addition_request_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxR Returns: Optional[MailboxRestoreArtifactsBulkAdditionRequest] Find more info here: https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: MailboxRestoreArtifactsBulkAdditionRequest, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxRestoreArtifactsBulkAdditionRequest] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: MailboxRestoreArtifactsBulkAdditionR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> MailboxRestoreArtifactsBulkAdditionRequestIte param raw_url: The raw URL to use for the request builder. Returns: MailboxRestoreArtifactsBulkAdditionRequestItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxRestoreArtifactsBulkAdditionRequestItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/mailbox_restore_artifacts_bulk_addition_requests_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/mailbox_restore_artifacts_bulk_addition_requests_request_builder.py index 8aedffd10b8..423a7780e03 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/mailbox_restore_artifacts_bulk_addition_requests_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exchange_restore_sessions/item/mailbox_restore_artifacts_bulk_addition_requests/mailbox_restore_artifacts_bulk_addition_requests_request_builder.py @@ -39,7 +39,6 @@ def by_mailbox_restore_artifacts_bulk_addition_request_id(self,mailbox_restore_a param mailbox_restore_artifacts_bulk_addition_request_id: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest Returns: MailboxRestoreArtifactsBulkAdditionRequestItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_restore_artifacts_bulk_addition_request_id is None: raise TypeError("mailbox_restore_artifacts_bulk_addition_request_id cannot be null.") from .item.mailbox_restore_artifacts_bulk_addition_request_item_request_builder import MailboxRestoreArtifactsBulkAdditionRequestItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxR Returns: Optional[MailboxRestoreArtifactsBulkAdditionRequestCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: MailboxRestoreArtifactsBulkAdditionRequest, request_co Returns: Optional[MailboxRestoreArtifactsBulkAdditionRequest] Find more info here: https://learn.microsoft.com/graph/api/exchangerestoresession-post-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: MailboxRestoreArtifactsBulkAdditionRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> MailboxRestoreArtifactsBulkAdditionRequestsRe param raw_url: The raw URL to use for the request builder. Returns: MailboxRestoreArtifactsBulkAdditionRequestsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxRestoreArtifactsBulkAdditionRequestsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exclusion_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exclusion_units/count/count_request_builder.py index 18bb8d13411..bf6f554fbc8 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exclusion_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exclusion_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exclusion_units/exclusion_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exclusion_units/exclusion_units_request_builder.py index ce75ab0e853..45dab8af224 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exclusion_units/exclusion_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exclusion_units/exclusion_units_request_builder.py @@ -38,7 +38,6 @@ def by_exclusion_unit_base_id(self,exclusion_unit_base_id: str) -> ExclusionUnit param exclusion_unit_base_id: The unique identifier of exclusionUnitBase Returns: ExclusionUnitBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if exclusion_unit_base_id is None: raise TypeError("exclusion_unit_base_id cannot be null.") from .item.exclusion_unit_base_item_request_builder import ExclusionUnitBaseItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Exclusio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExclusionUnitBaseCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> ExclusionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ExclusionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExclusionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/exclusion_units/item/exclusion_unit_base_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/exclusion_units/item/exclusion_unit_base_item_request_builder.py index d2d548f4e8d..4020f37ecc1 100644 --- a/msgraph_beta/generated/solutions/backup_restore/exclusion_units/item/exclusion_unit_base_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/exclusion_units/item/exclusion_unit_base_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Exclusio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ExclusionUnitBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ExclusionUnitBaseItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ExclusionUnitBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ExclusionUnitBaseItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/count/count_request_builder.py index eeba6951e7d..fa7b6cdd8c6 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/item/mailbox_exclusion_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/item/mailbox_exclusion_unit_item_request_builder.py index 5d5e96e503d..04bd6bdd732 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/item/mailbox_exclusion_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/item/mailbox_exclusion_unit_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxExclusionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: MailboxExclusionUnit, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxExclusionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: MailboxExclusionUnit, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> MailboxExclusionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxExclusionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/mailbox_exclusion_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/mailbox_exclusion_units_request_builder.py index d9d4f902c24..a8c54aaeb7d 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/mailbox_exclusion_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units/mailbox_exclusion_units_request_builder.py @@ -39,7 +39,6 @@ def by_mailbox_exclusion_unit_id(self,mailbox_exclusion_unit_id: str) -> Mailbox param mailbox_exclusion_unit_id: The unique identifier of mailboxExclusionUnit Returns: MailboxExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_exclusion_unit_id is None: raise TypeError("mailbox_exclusion_unit_id cannot be null.") from .item.mailbox_exclusion_unit_item_request_builder import MailboxExclusionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxExclusionUnitCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: MailboxExclusionUnit, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxExclusionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: MailboxExclusionUnit, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> MailboxExclusionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxExclusionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxExclusionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/count/count_request_builder.py index 22f071a54ba..85d771f6108 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/item/mailbox_exclusion_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/item/mailbox_exclusion_units_bulk_addition_job_item_request_builder.py index eafd0878614..9c535c83453 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/item/mailbox_exclusion_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/item/mailbox_exclusion_units_bulk_addition_job_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxExclusionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: MailboxExclusionUnitsBulkAdditionJob, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxExclusionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: MailboxExclusionUnitsBulkAdditionJob param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> MailboxExclusionUnitsBulkAdditionJobItemReque param raw_url: The raw URL to use for the request builder. Returns: MailboxExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxExclusionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/mailbox_exclusion_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/mailbox_exclusion_units_bulk_addition_jobs_request_builder.py index 861023ec3ba..94fc6553932 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/mailbox_exclusion_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_exclusion_units_bulk_addition_jobs/mailbox_exclusion_units_bulk_addition_jobs_request_builder.py @@ -39,7 +39,6 @@ def by_mailbox_exclusion_units_bulk_addition_job_id(self,mailbox_exclusion_units param mailbox_exclusion_units_bulk_addition_job_id: The unique identifier of mailboxExclusionUnitsBulkAdditionJob Returns: MailboxExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_exclusion_units_bulk_addition_job_id is None: raise TypeError("mailbox_exclusion_units_bulk_addition_job_id cannot be null.") from .item.mailbox_exclusion_units_bulk_addition_job_item_request_builder import MailboxExclusionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxExclusionUnitsBulkAdditionJobCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: MailboxExclusionUnitsBulkAdditionJob, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxExclusionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: MailboxExclusionUnitsBulkAdditionJob, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> MailboxExclusionUnitsBulkAdditionJobsRequestB param raw_url: The raw URL to use for the request builder. Returns: MailboxExclusionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxExclusionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/count/count_request_builder.py index fb2a029e19e..4ecc51a2133 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/item/mailbox_protection_rule_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/item/mailbox_protection_rule_item_request_builder.py index fd3adcf2771..4e06c91a164 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/item/mailbox_protection_rule_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/item/mailbox_protection_rule_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionRule] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: MailboxProtectionRule, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionRule] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: MailboxProtectionRule, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> MailboxProtectionRuleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxProtectionRuleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/mailbox_inclusion_rules_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/mailbox_inclusion_rules_request_builder.py index ce6f047dc95..595dbd80048 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/mailbox_inclusion_rules_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_inclusion_rules/mailbox_inclusion_rules_request_builder.py @@ -39,7 +39,6 @@ def by_mailbox_protection_rule_id(self,mailbox_protection_rule_id: str) -> Mailb param mailbox_protection_rule_id: The unique identifier of mailboxProtectionRule Returns: MailboxProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_protection_rule_id is None: raise TypeError("mailbox_protection_rule_id cannot be null.") from .item.mailbox_protection_rule_item_request_builder import MailboxProtectionRuleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxI param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionRuleCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: MailboxProtectionRule, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionRule] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: MailboxProtectionRule, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> MailboxInclusionRulesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxInclusionRulesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxInclusionRulesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/count/count_request_builder.py index 6205fce88e3..d06311f7f0b 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/item/mailbox_protection_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/item/mailbox_protection_unit_item_request_builder.py index b8e89ae9465..097cfc899e3 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/item/mailbox_protection_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/item/mailbox_protection_unit_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: MailboxProtectionUnit, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: MailboxProtectionUnit, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> MailboxProtectionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxProtectionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/mailbox_protection_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/mailbox_protection_units_request_builder.py index 765c3fdd206..5054a325961 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/mailbox_protection_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units/mailbox_protection_units_request_builder.py @@ -39,7 +39,6 @@ def by_mailbox_protection_unit_id(self,mailbox_protection_unit_id: str) -> Mailb param mailbox_protection_unit_id: The unique identifier of mailboxProtectionUnit Returns: MailboxProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_protection_unit_id is None: raise TypeError("mailbox_protection_unit_id cannot be null.") from .item.mailbox_protection_unit_item_request_builder import MailboxProtectionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionUnitCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: MailboxProtectionUnit, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: MailboxProtectionUnit, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> MailboxProtectionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MailboxProtectionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxProtectionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/count/count_request_builder.py index 291ed0395ae..c3f9c6eb8e1 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/item/mailbox_protection_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/item/mailbox_protection_units_bulk_addition_job_item_request_builder.py index 64156e08c37..65bad14f368 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/item/mailbox_protection_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/item/mailbox_protection_units_bulk_addition_job_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: MailboxProtectionUnitsBulkAdditionJob, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: MailboxProtectionUnitsBulkAdditionJo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> MailboxProtectionUnitsBulkAdditionJobItemRequ param raw_url: The raw URL to use for the request builder. Returns: MailboxProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxProtectionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/mailbox_protection_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/mailbox_protection_units_bulk_addition_jobs_request_builder.py index 5a373c0e584..441f5a5d7a8 100644 --- a/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/mailbox_protection_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/mailbox_protection_units_bulk_addition_jobs/mailbox_protection_units_bulk_addition_jobs_request_builder.py @@ -39,7 +39,6 @@ def by_mailbox_protection_units_bulk_addition_job_id(self,mailbox_protection_uni param mailbox_protection_units_bulk_addition_job_id: The unique identifier of mailboxProtectionUnitsBulkAdditionJob Returns: MailboxProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if mailbox_protection_units_bulk_addition_job_id is None: raise TypeError("mailbox_protection_units_bulk_addition_job_id cannot be null.") from .item.mailbox_protection_units_bulk_addition_job_item_request_builder import MailboxProtectionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MailboxP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionUnitsBulkAdditionJobCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: MailboxProtectionUnitsBulkAdditionJob, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MailboxProtectionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: MailboxProtectionUnitsBulkAdditionJob param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> MailboxProtectionUnitsBulkAdditionJobsRequest param raw_url: The raw URL to use for the request builder. Returns: MailboxProtectionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MailboxProtectionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/count/count_request_builder.py index 976975d903c..cb2918da20a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/item/one_drive_for_business_browse_session_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/item/one_drive_for_business_browse_session_item_request_builder.py index 3d73fc5314c..e1782c2c742 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/item/one_drive_for_business_browse_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/item/one_drive_for_business_browse_session_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[OneDrive Returns: Optional[OneDriveForBusinessBrowseSession] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessbrowsesession-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: OneDriveForBusinessBrowseSession, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[OneDriveForBusinessBrowseSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: OneDriveForBusinessBrowseSession, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> OneDriveForBusinessBrowseSessionItemRequestBu param raw_url: The raw URL to use for the request builder. Returns: OneDriveForBusinessBrowseSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OneDriveForBusinessBrowseSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/one_drive_for_business_browse_sessions_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/one_drive_for_business_browse_sessions_request_builder.py index 63603525d68..2ced02e67f0 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/one_drive_for_business_browse_sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_browse_sessions/one_drive_for_business_browse_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_one_drive_for_business_browse_session_id(self,one_drive_for_business_brow param one_drive_for_business_browse_session_id: The unique identifier of oneDriveForBusinessBrowseSession Returns: OneDriveForBusinessBrowseSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if one_drive_for_business_browse_session_id is None: raise TypeError("one_drive_for_business_browse_session_id cannot be null.") from .item.one_drive_for_business_browse_session_item_request_builder import OneDriveForBusinessBrowseSessionItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[OneDrive Returns: Optional[OneDriveForBusinessBrowseSessionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-onedriveforbusinessbrowsesessions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: OneDriveForBusinessBrowseSession, request_configuratio Returns: Optional[OneDriveForBusinessBrowseSession] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessbrowsesessions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: OneDriveForBusinessBrowseSession, req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> OneDriveForBusinessBrowseSessionsRequestBuild param raw_url: The raw URL to use for the request builder. Returns: OneDriveForBusinessBrowseSessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OneDriveForBusinessBrowseSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/count/count_request_builder.py index b3d47130d1d..4b7f9437e59 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/count/count_request_builder.py index 98cf2217fdd..aab6ce9eb0e 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/drive_exclusion_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/drive_exclusion_units_request_builder.py index 547bea61b12..bf60ac3218b 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/drive_exclusion_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/drive_exclusion_units_request_builder.py @@ -38,7 +38,6 @@ def by_drive_exclusion_unit_id(self,drive_exclusion_unit_id: str) -> DriveExclus param drive_exclusion_unit_id: The unique identifier of driveExclusionUnit Returns: DriveExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_exclusion_unit_id is None: raise TypeError("drive_exclusion_unit_id cannot be null.") from .item.drive_exclusion_unit_item_request_builder import DriveExclusionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveExc Returns: Optional[DriveExclusionUnitCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveexclusionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> DriveExclusionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveExclusionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveExclusionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/item/drive_exclusion_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/item/drive_exclusion_unit_item_request_builder.py index 8ab4600e830..cf904958fb2 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/item/drive_exclusion_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units/item/drive_exclusion_unit_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveExc Returns: Optional[DriveExclusionUnit] Find more info here: https://learn.microsoft.com/graph/api/driveexclusionunit-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> DriveExclusionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveExclusionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/count/count_request_builder.py index e6e1d825cf5..7e3f8869cbd 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/drive_exclusion_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/drive_exclusion_units_bulk_addition_jobs_request_builder.py index 7ac2f4a44fc..4d2e371836c 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/drive_exclusion_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/drive_exclusion_units_bulk_addition_jobs_request_builder.py @@ -38,7 +38,6 @@ def by_drive_exclusion_units_bulk_addition_job_id(self,drive_exclusion_units_bul param drive_exclusion_units_bulk_addition_job_id: The unique identifier of driveExclusionUnitsBulkAdditionJob Returns: DriveExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_exclusion_units_bulk_addition_job_id is None: raise TypeError("drive_exclusion_units_bulk_addition_job_id cannot be null.") from .item.drive_exclusion_units_bulk_addition_job_item_request_builder import DriveExclusionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveExc Returns: Optional[DriveExclusionUnitsBulkAdditionJobCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveexclusionunitsbulkadditionjobs?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> DriveExclusionUnitsBulkAdditionJobsRequestBui param raw_url: The raw URL to use for the request builder. Returns: DriveExclusionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveExclusionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/item/drive_exclusion_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/item/drive_exclusion_units_bulk_addition_job_item_request_builder.py index 9ed3bb31655..06e376052a6 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/item/drive_exclusion_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_exclusion_units_bulk_addition_jobs/item/drive_exclusion_units_bulk_addition_job_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveExc Returns: Optional[DriveExclusionUnitsBulkAdditionJob] Find more info here: https://learn.microsoft.com/graph/api/driveexclusionunitsbulkadditionjob-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> DriveExclusionUnitsBulkAdditionJobItemRequest param raw_url: The raw URL to use for the request builder. Returns: DriveExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveExclusionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/count/count_request_builder.py index 5b4f2cb2cb5..7423e3ee96b 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/drive_inclusion_rules_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/drive_inclusion_rules_request_builder.py index 6241c71f38b..dc4ccf09d1c 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/drive_inclusion_rules_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/drive_inclusion_rules_request_builder.py @@ -38,7 +38,6 @@ def by_drive_protection_rule_id(self,drive_protection_rule_id: str) -> DriveProt param drive_protection_rule_id: The unique identifier of driveProtectionRule Returns: DriveProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_protection_rule_id is None: raise TypeError("drive_protection_rule_id cannot be null.") from .item.drive_protection_rule_item_request_builder import DriveProtectionRuleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveInc Returns: Optional[DriveProtectionRuleCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveinclusionrules?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> DriveInclusionRulesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveInclusionRulesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveInclusionRulesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/item/drive_protection_rule_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/item/drive_protection_rule_item_request_builder.py index 0dff606fc83..b1ac2a86c2e 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/item/drive_protection_rule_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_inclusion_rules/item/drive_protection_rule_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DrivePro Returns: Optional[DriveProtectionRule] Find more info here: https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> DriveProtectionRuleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveProtectionRuleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/count/count_request_builder.py index 92190d3dea8..fca0d02e4fd 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/drive_protection_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/drive_protection_units_request_builder.py index f4a5c972f65..e50bd7c75c9 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/drive_protection_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/drive_protection_units_request_builder.py @@ -38,7 +38,6 @@ def by_drive_protection_unit_id(self,drive_protection_unit_id: str) -> DriveProt param drive_protection_unit_id: The unique identifier of driveProtectionUnit Returns: DriveProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_protection_unit_id is None: raise TypeError("drive_protection_unit_id cannot be null.") from .item.drive_protection_unit_item_request_builder import DriveProtectionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DrivePro Returns: Optional[DriveProtectionUnitCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> DriveProtectionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveProtectionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveProtectionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/item/drive_protection_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/item/drive_protection_unit_item_request_builder.py index 6b22ee1cb2a..52abdcf3c5e 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/item/drive_protection_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units/item/drive_protection_unit_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DrivePro param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> DriveProtectionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveProtectionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/count/count_request_builder.py index b03f0e37327..8f7d7f8f7aa 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/drive_protection_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/drive_protection_units_bulk_addition_jobs_request_builder.py index ce6c46e1b2d..d948ee107d0 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/drive_protection_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/drive_protection_units_bulk_addition_jobs_request_builder.py @@ -38,7 +38,6 @@ def by_drive_protection_units_bulk_addition_job_id(self,drive_protection_units_b param drive_protection_units_bulk_addition_job_id: The unique identifier of driveProtectionUnitsBulkAdditionJob Returns: DriveProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_protection_units_bulk_addition_job_id is None: raise TypeError("drive_protection_units_bulk_addition_job_id cannot be null.") from .item.drive_protection_units_bulk_addition_job_item_request_builder import DriveProtectionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DrivePro Returns: Optional[DriveProtectionUnitsBulkAdditionJobCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveprotectionunitsbulkadditionjobs?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> DriveProtectionUnitsBulkAdditionJobsRequestBu param raw_url: The raw URL to use for the request builder. Returns: DriveProtectionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveProtectionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/item/drive_protection_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/item/drive_protection_units_bulk_addition_job_item_request_builder.py index 0a74e3e0f8b..93f36cfc34c 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/item/drive_protection_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/drive_protection_units_bulk_addition_jobs/item/drive_protection_units_bulk_addition_job_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DrivePro Returns: Optional[DriveProtectionUnitsBulkAdditionJob] Find more info here: https://learn.microsoft.com/graph/api/driveprotectionunitsbulkadditionjobs-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> DriveProtectionUnitsBulkAdditionJobItemReques param raw_url: The raw URL to use for the request builder. Returns: DriveProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveProtectionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/one_drive_for_business_protection_policy_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/one_drive_for_business_protection_policy_item_request_builder.py index afa2865b869..576d5ffce9a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/one_drive_for_business_protection_policy_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/item/one_drive_for_business_protection_policy_item_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[OneDrive param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[OneDriveForBusinessProtectionPolicy] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: OneDriveForBusinessProtectionPolicy, request_configur Returns: Optional[OneDriveForBusinessProtectionPolicy] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: OneDriveForBusinessProtectionPolicy, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> OneDriveForBusinessProtectionPolicyItemReques param raw_url: The raw URL to use for the request builder. Returns: OneDriveForBusinessProtectionPolicyItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OneDriveForBusinessProtectionPolicyItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/one_drive_for_business_protection_policies_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/one_drive_for_business_protection_policies_request_builder.py index cc87c4f2019..45607b099e2 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/one_drive_for_business_protection_policies_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_protection_policies/one_drive_for_business_protection_policies_request_builder.py @@ -39,7 +39,6 @@ def by_one_drive_for_business_protection_policy_id(self,one_drive_for_business_p param one_drive_for_business_protection_policy_id: The unique identifier of oneDriveForBusinessProtectionPolicy Returns: OneDriveForBusinessProtectionPolicyItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if one_drive_for_business_protection_policy_id is None: raise TypeError("one_drive_for_business_protection_policy_id cannot be null.") from .item.one_drive_for_business_protection_policy_item_request_builder import OneDriveForBusinessProtectionPolicyItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[OneDrive param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[OneDriveForBusinessProtectionPolicyCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: OneDriveForBusinessProtectionPolicy, request_configura Returns: Optional[OneDriveForBusinessProtectionPolicy] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessprotectionpolicies?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: OneDriveForBusinessProtectionPolicy, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> OneDriveForBusinessProtectionPoliciesRequestB param raw_url: The raw URL to use for the request builder. Returns: OneDriveForBusinessProtectionPoliciesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OneDriveForBusinessProtectionPoliciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/count/count_request_builder.py index 0d21d69d2c4..303398cf3f2 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/count/count_request_builder.py index 393ddc17cc1..a8c746f25e9 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/drive_restore_artifacts_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/drive_restore_artifacts_request_builder.py index 3e671ef7406..4a17d4ec506 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/drive_restore_artifacts_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/drive_restore_artifacts_request_builder.py @@ -39,7 +39,6 @@ def by_drive_restore_artifact_id(self,drive_restore_artifact_id: str) -> DriveRe param drive_restore_artifact_id: The unique identifier of driveRestoreArtifact Returns: DriveRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_restore_artifact_id is None: raise TypeError("drive_restore_artifact_id cannot be null.") from .item.drive_restore_artifact_item_request_builder import DriveRestoreArtifactItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveRes Returns: Optional[DriveRestoreArtifactCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifacts?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: DriveRestoreArtifact, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: DriveRestoreArtifact, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> DriveRestoreArtifactsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveRestoreArtifactsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveRestoreArtifactsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/item/drive_restore_artifact_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/item/drive_restore_artifact_item_request_builder.py index d0ae5335b08..0bad04185a2 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/item/drive_restore_artifact_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/item/drive_restore_artifact_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveRes param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: DriveRestoreArtifact, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: DriveRestoreArtifact, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> DriveRestoreArtifactItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DriveRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveRestoreArtifactItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/item/restore_point/restore_point_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/item/restore_point/restore_point_request_builder.py index 6e2e62f3cca..a6ed2c26d90 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/item/restore_point/restore_point_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts/item/restore_point/restore_point_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RestoreP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestorePoint] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RestorePointRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RestorePointRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RestorePointRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/count/count_request_builder.py index 02bb0ecad11..88c73e28534 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/drive_restore_artifacts_bulk_addition_requests_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/drive_restore_artifacts_bulk_addition_requests_request_builder.py index 88f4371186b..36f5b4d9383 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/drive_restore_artifacts_bulk_addition_requests_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/drive_restore_artifacts_bulk_addition_requests_request_builder.py @@ -39,7 +39,6 @@ def by_drive_restore_artifacts_bulk_addition_request_id(self,drive_restore_artif param drive_restore_artifacts_bulk_addition_request_id: The unique identifier of driveRestoreArtifactsBulkAdditionRequest Returns: DriveRestoreArtifactsBulkAdditionRequestItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if drive_restore_artifacts_bulk_addition_request_id is None: raise TypeError("drive_restore_artifacts_bulk_addition_request_id cannot be null.") from .item.drive_restore_artifacts_bulk_addition_request_item_request_builder import DriveRestoreArtifactsBulkAdditionRequestItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveRes Returns: Optional[DriveRestoreArtifactsBulkAdditionRequestCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifactsbulkadditionrequests?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: DriveRestoreArtifactsBulkAdditionRequest, request_conf Returns: Optional[DriveRestoreArtifactsBulkAdditionRequest] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-post-driverestoreartifactsbulkadditionrequests?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: DriveRestoreArtifactsBulkAdditionRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> DriveRestoreArtifactsBulkAdditionRequestsRequ param raw_url: The raw URL to use for the request builder. Returns: DriveRestoreArtifactsBulkAdditionRequestsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveRestoreArtifactsBulkAdditionRequestsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/item/drive_restore_artifacts_bulk_addition_request_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/item/drive_restore_artifacts_bulk_addition_request_item_request_builder.py index c268bb0a12f..4af9a85a50c 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/item/drive_restore_artifacts_bulk_addition_request_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/drive_restore_artifacts_bulk_addition_requests/item/drive_restore_artifacts_bulk_addition_request_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DriveRes Returns: Optional[DriveRestoreArtifactsBulkAdditionRequest] Find more info here: https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: DriveRestoreArtifactsBulkAdditionRequest, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[DriveRestoreArtifactsBulkAdditionRequest] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: DriveRestoreArtifactsBulkAdditionReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> DriveRestoreArtifactsBulkAdditionRequestItemR param raw_url: The raw URL to use for the request builder. Returns: DriveRestoreArtifactsBulkAdditionRequestItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DriveRestoreArtifactsBulkAdditionRequestItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/count/count_request_builder.py index 95436e27c50..2dab26d508e 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/granular_drive_restore_artifacts_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/granular_drive_restore_artifacts_request_builder.py index 23a280e43fc..82ca18b6aa2 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/granular_drive_restore_artifacts_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/granular_drive_restore_artifacts_request_builder.py @@ -39,7 +39,6 @@ def by_granular_drive_restore_artifact_id(self,granular_drive_restore_artifact_i param granular_drive_restore_artifact_id: The unique identifier of granularDriveRestoreArtifact Returns: GranularDriveRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if granular_drive_restore_artifact_id is None: raise TypeError("granular_drive_restore_artifact_id cannot be null.") from .item.granular_drive_restore_artifact_item_request_builder import GranularDriveRestoreArtifactItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Granular Returns: Optional[GranularDriveRestoreArtifactCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-granulardriverestoreartifacts?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: GranularDriveRestoreArtifact, request_configuration: O param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GranularDriveRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: GranularDriveRestoreArtifact, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> GranularDriveRestoreArtifactsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GranularDriveRestoreArtifactsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GranularDriveRestoreArtifactsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/item/granular_drive_restore_artifact_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/item/granular_drive_restore_artifact_item_request_builder.py index 98325d5dc76..e445e98131b 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/item/granular_drive_restore_artifact_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/granular_drive_restore_artifacts/item/granular_drive_restore_artifact_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Granular param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GranularDriveRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GranularDriveRestoreArtifact, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GranularDriveRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GranularDriveRestoreArtifact, reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GranularDriveRestoreArtifactItemRequestBuilde param raw_url: The raw URL to use for the request builder. Returns: GranularDriveRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GranularDriveRestoreArtifactItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/one_drive_for_business_restore_session_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/one_drive_for_business_restore_session_item_request_builder.py index e5a2c295470..15b8ccdae70 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/one_drive_for_business_restore_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/item/one_drive_for_business_restore_session_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[OneDrive param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[OneDriveForBusinessRestoreSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: OneDriveForBusinessRestoreSession, request_configurat Returns: Optional[OneDriveForBusinessRestoreSession] Find more info here: https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: OneDriveForBusinessRestoreSession, r param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> OneDriveForBusinessRestoreSessionItemRequestB param raw_url: The raw URL to use for the request builder. Returns: OneDriveForBusinessRestoreSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OneDriveForBusinessRestoreSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/one_drive_for_business_restore_sessions_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/one_drive_for_business_restore_sessions_request_builder.py index 065868f0cb9..d31ef7bb213 100644 --- a/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/one_drive_for_business_restore_sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/one_drive_for_business_restore_sessions/one_drive_for_business_restore_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_one_drive_for_business_restore_session_id(self,one_drive_for_business_res param one_drive_for_business_restore_session_id: The unique identifier of oneDriveForBusinessRestoreSession Returns: OneDriveForBusinessRestoreSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if one_drive_for_business_restore_session_id is None: raise TypeError("one_drive_for_business_restore_session_id cannot be null.") from .item.one_drive_for_business_restore_session_item_request_builder import OneDriveForBusinessRestoreSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[OneDrive param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[OneDriveForBusinessRestoreSessionCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: OneDriveForBusinessRestoreSession, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[OneDriveForBusinessRestoreSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: OneDriveForBusinessRestoreSession, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> OneDriveForBusinessRestoreSessionsRequestBuil param raw_url: The raw URL to use for the request builder. Returns: OneDriveForBusinessRestoreSessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OneDriveForBusinessRestoreSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_policies/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_policies/count/count_request_builder.py index e30d84d9e5a..0a9be827ca9 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_policies/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_policies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/activate/activate_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/activate/activate_request_builder.py index 95a39f443af..aaf6938b362 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/activate/activate_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/activate/activate_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[ProtectionPolicyBase] Find more info here: https://learn.microsoft.com/graph/api/protectionpolicybase-activate?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ActivateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ActivateRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ActivateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/deactivate/deactivate_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/deactivate/deactivate_request_builder.py index d2178986878..3f803d75e81 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/deactivate/deactivate_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/deactivate/deactivate_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[ProtectionPolicyBase] Find more info here: https://learn.microsoft.com/graph/api/protectionpolicybase-deactivate?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> DeactivateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DeactivateRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DeactivateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/protection_policy_base_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/protection_policy_base_item_request_builder.py index 68a82e5b426..4bb9b7dff80 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/protection_policy_base_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_policies/item/protection_policy_base_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/protectionpolicybase-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Protecti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ProtectionPolicyBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: ProtectionPolicyBase, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ProtectionPolicyBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: ProtectionPolicyBase, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> ProtectionPolicyBaseItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ProtectionPolicyBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ProtectionPolicyBaseItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_policies/protection_policies_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_policies/protection_policies_request_builder.py index 44ababdf5d5..aee7f842c90 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_policies/protection_policies_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_policies/protection_policies_request_builder.py @@ -39,7 +39,6 @@ def by_protection_policy_base_id(self,protection_policy_base_id: str) -> Protect param protection_policy_base_id: The unique identifier of protectionPolicyBase Returns: ProtectionPolicyBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if protection_policy_base_id is None: raise TypeError("protection_policy_base_id cannot be null.") from .item.protection_policy_base_item_request_builder import ProtectionPolicyBaseItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Protecti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ProtectionPolicyBaseCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: ProtectionPolicyBase, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ProtectionPolicyBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: ProtectionPolicyBase, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> ProtectionPoliciesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ProtectionPoliciesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ProtectionPoliciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/count/count_request_builder.py index 69cd0d69402..14880377276 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_drive_protection_unit/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_drive_protection_unit/count/count_request_builder.py index 519a992769a..bdfb9950677 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_drive_protection_unit/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_drive_protection_unit/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_drive_protection_unit/graph_drive_protection_unit_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_drive_protection_unit/graph_drive_protection_unit_request_builder.py index 44e182b5279..38692c737ae 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_drive_protection_unit/graph_drive_protection_unit_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_drive_protection_unit/graph_drive_protection_unit_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphDri Returns: Optional[DriveProtectionUnitCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> GraphDriveProtectionUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphDriveProtectionUnitRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphDriveProtectionUnitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_mailbox_protection_unit/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_mailbox_protection_unit/count/count_request_builder.py index e722f7a5a24..23e50d70e9e 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_mailbox_protection_unit/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_mailbox_protection_unit/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_mailbox_protection_unit/graph_mailbox_protection_unit_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_mailbox_protection_unit/graph_mailbox_protection_unit_request_builder.py index ac098b5b925..80dba58e2fc 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_mailbox_protection_unit/graph_mailbox_protection_unit_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_mailbox_protection_unit/graph_mailbox_protection_unit_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphMai Returns: Optional[MailboxProtectionUnitCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-mailboxprotectionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> GraphMailboxProtectionUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphMailboxProtectionUnitRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphMailboxProtectionUnitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_site_protection_unit/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_site_protection_unit/count/count_request_builder.py index 215c2f1cb4f..026fe4c5a15 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_site_protection_unit/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_site_protection_unit/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_site_protection_unit/graph_site_protection_unit_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_site_protection_unit/graph_site_protection_unit_request_builder.py index 5ed3e474ed8..9e2116ba806 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_site_protection_unit/graph_site_protection_unit_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/graph_site_protection_unit/graph_site_protection_unit_request_builder.py @@ -38,7 +38,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphSit Returns: Optional[SiteProtectionUnitCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -59,7 +58,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -71,7 +69,6 @@ def with_url(self,raw_url: str) -> GraphSiteProtectionUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphSiteProtectionUnitRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphSiteProtectionUnitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/cancel_offboard/cancel_offboard_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/cancel_offboard/cancel_offboard_request_builder.py index 02457ed6985..a73924921de 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/cancel_offboard/cancel_offboard_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/cancel_offboard/cancel_offboard_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[ProtectionUnitBase] Find more info here: https://learn.microsoft.com/graph/api/protectionunitbase-canceloffboard?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> CancelOffboardRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelOffboardRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelOffboardRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_drive_protection_unit/graph_drive_protection_unit_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_drive_protection_unit/graph_drive_protection_unit_request_builder.py index 933593ac9ef..49eed1fbc37 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_drive_protection_unit/graph_drive_protection_unit_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_drive_protection_unit/graph_drive_protection_unit_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphDri Returns: Optional[DriveProtectionUnit] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphDriveProtectionUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphDriveProtectionUnitRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphDriveProtectionUnitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_mailbox_protection_unit/graph_mailbox_protection_unit_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_mailbox_protection_unit/graph_mailbox_protection_unit_request_builder.py index 0235b6a75d3..bd6d49eecef 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_mailbox_protection_unit/graph_mailbox_protection_unit_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_mailbox_protection_unit/graph_mailbox_protection_unit_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphMai Returns: Optional[MailboxProtectionUnit] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-mailboxprotectionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphMailboxProtectionUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphMailboxProtectionUnitRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphMailboxProtectionUnitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_site_protection_unit/graph_site_protection_unit_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_site_protection_unit/graph_site_protection_unit_request_builder.py index c6f24de1f4d..a83a0bd317a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_site_protection_unit/graph_site_protection_unit_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/graph_site_protection_unit/graph_site_protection_unit_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GraphSit Returns: Optional[SiteProtectionUnit] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> GraphSiteProtectionUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GraphSiteProtectionUnitRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GraphSiteProtectionUnitRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/offboard/offboard_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/offboard/offboard_request_builder.py index f7a722ab2ec..b8dbd536bab 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/offboard/offboard_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/offboard/offboard_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[ProtectionUnitBase] Find more info here: https://learn.microsoft.com/graph/api/protectionunitbase-offboard?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> OffboardRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: OffboardRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return OffboardRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/protection_unit_base_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/protection_unit_base_item_request_builder.py index 1168a6b6bb1..4068121f299 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/item/protection_unit_base_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/item/protection_unit_base_item_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Protecti Returns: Optional[ProtectionUnitBase] Find more info here: https://learn.microsoft.com/graph/api/protectionunitbase-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> ProtectionUnitBaseItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ProtectionUnitBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ProtectionUnitBaseItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/protection_units/protection_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/protection_units/protection_units_request_builder.py index 1c4beb63b84..ecbc98ec129 100644 --- a/msgraph_beta/generated/solutions/backup_restore/protection_units/protection_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/protection_units/protection_units_request_builder.py @@ -41,7 +41,6 @@ def by_protection_unit_base_id(self,protection_unit_base_id: str) -> ProtectionU param protection_unit_base_id: The unique identifier of protectionUnitBase Returns: ProtectionUnitBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if protection_unit_base_id is None: raise TypeError("protection_unit_base_id cannot be null.") from .item.protection_unit_base_item_request_builder import ProtectionUnitBaseItemRequestBuilder @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Protecti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ProtectionUnitBaseCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -89,7 +86,6 @@ def with_url(self,raw_url: str) -> ProtectionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ProtectionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ProtectionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/reports/get_statistics_by_policy_with_policy_id/get_statistics_by_policy_with_policy_id_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/reports/get_statistics_by_policy_with_policy_id/get_statistics_by_policy_with_policy_id_request_builder.py index f1eced4d3b4..9caf5689ccf 100644 --- a/msgraph_beta/generated/solutions/backup_restore/reports/get_statistics_by_policy_with_policy_id/get_statistics_by_policy_with_policy_id_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/reports/get_statistics_by_policy_with_policy_id/get_statistics_by_policy_with_policy_id_request_builder.py @@ -35,11 +35,11 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d async def get(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[BackupPolicyReport]: """ - Invoke function getStatisticsByPolicy + Get the statistics that correspond to the specified policy ID of a backupPolicyReport. param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BackupPolicyReport] + Find more info here: https://learn.microsoft.com/graph/api/backupreport-getstatisticsbypolicy?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -56,11 +56,10 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: """ - Invoke function getStatisticsByPolicy + Get the statistics that correspond to the specified policy ID of a backupPolicyReport. param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +71,6 @@ def with_url(self,raw_url: str) -> GetStatisticsByPolicyWithPolicyIdRequestBuild param raw_url: The raw URL to use for the request builder. Returns: GetStatisticsByPolicyWithPolicyIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetStatisticsByPolicyWithPolicyIdRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/reports/reports_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/reports/reports_request_builder.py index 6a2a7396f10..8b7c6c2a030 100644 --- a/msgraph_beta/generated/solutions/backup_restore/reports/reports_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/reports/reports_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -52,11 +51,10 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query async def get(self,request_configuration: Optional[RequestConfiguration[ReportsRequestBuilderGetQueryParameters]] = None) -> Optional[BackupReport]: """ - Get reports from solutions + Report corresponding to a protection policy. param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BackupReport] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ def get_statistics_by_policy_with_policy_id(self,policy_id: str) -> GetStatistic param policy_id: Usage: policyId='{policyId}' Returns: GetStatisticsByPolicyWithPolicyIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if policy_id is None: raise TypeError("policy_id cannot be null.") from .get_statistics_by_policy_with_policy_id.get_statistics_by_policy_with_policy_id_request_builder import GetStatisticsByPolicyWithPolicyIdRequestBuilder @@ -91,7 +88,6 @@ async def patch(self,body: BackupReport, request_configuration: Optional[Request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BackupReport] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -114,7 +110,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -122,11 +117,10 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ReportsRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ - Get reports from solutions + Report corresponding to a protection policy. param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -139,7 +133,6 @@ def to_patch_request_information(self,body: BackupReport, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -154,7 +147,6 @@ def with_url(self,raw_url: str) -> ReportsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ReportsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ReportsRequestBuilder(self.request_adapter, raw_url) @@ -169,7 +161,7 @@ class ReportsRequestBuilderDeleteRequestConfiguration(RequestConfiguration[Query @dataclass class ReportsRequestBuilderGetQueryParameters(): """ - Get reports from solutions + Report corresponding to a protection policy. """ def get_query_parameter(self,original_name: str) -> str: """ diff --git a/msgraph_beta/generated/solutions/backup_restore/restore_points/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/restore_points/count/count_request_builder.py index ab3f7293eeb..3c1018bd2cc 100644 --- a/msgraph_beta/generated/solutions/backup_restore/restore_points/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/restore_points/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/restore_points/item/protection_unit/protection_unit_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/restore_points/item/protection_unit/protection_unit_request_builder.py index 5a05d9eb719..f54d3e4c622 100644 --- a/msgraph_beta/generated/solutions/backup_restore/restore_points/item/protection_unit/protection_unit_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/restore_points/item/protection_unit/protection_unit_request_builder.py @@ -32,11 +32,10 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d async def get(self,request_configuration: Optional[RequestConfiguration[ProtectionUnitRequestBuilderGetQueryParameters]] = None) -> Optional[ProtectionUnitBase]: """ - The site, drive, or mailbox units that are protected under a protection policy. + The site, drive, or mailbox unit protected under a protection policy. Supports $expand and $filter on protectionUnit/policyId using the eq operator. param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ProtectionUnitBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -53,11 +52,10 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Protecti def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ProtectionUnitRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ - The site, drive, or mailbox units that are protected under a protection policy. + The site, drive, or mailbox unit protected under a protection policy. Supports $expand and $filter on protectionUnit/policyId using the eq operator. param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> ProtectionUnitRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ProtectionUnitRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ProtectionUnitRequestBuilder(self.request_adapter, raw_url) @@ -77,7 +74,7 @@ def with_url(self,raw_url: str) -> ProtectionUnitRequestBuilder: @dataclass class ProtectionUnitRequestBuilderGetQueryParameters(): """ - The site, drive, or mailbox units that are protected under a protection policy. + The site, drive, or mailbox unit protected under a protection policy. Supports $expand and $filter on protectionUnit/policyId using the eq operator. """ def get_query_parameter(self,original_name: str) -> str: """ diff --git a/msgraph_beta/generated/solutions/backup_restore/restore_points/item/restore_point_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/restore_points/item/restore_point_item_request_builder.py index 17d7503a99d..4409eef0bee 100644 --- a/msgraph_beta/generated/solutions/backup_restore/restore_points/item/restore_point_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/restore_points/item/restore_point_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RestoreP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestorePoint] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: RestorePoint, request_configuration: Optional[Request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestorePoint] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: RestorePoint, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> RestorePointItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RestorePointItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RestorePointItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/restore_points/restore_points_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/restore_points/restore_points_request_builder.py index 82748d54a79..25f72d34629 100644 --- a/msgraph_beta/generated/solutions/backup_restore/restore_points/restore_points_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/restore_points/restore_points_request_builder.py @@ -40,7 +40,6 @@ def by_restore_point_id(self,restore_point_id: str) -> RestorePointItemRequestBu param restore_point_id: The unique identifier of restorePoint Returns: RestorePointItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if restore_point_id is None: raise TypeError("restore_point_id cannot be null.") from .item.restore_point_item_request_builder import RestorePointItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RestoreP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestorePointCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: RestorePoint, request_configuration: Optional[RequestC param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestorePoint] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: RestorePoint, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> RestorePointsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RestorePointsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RestorePointsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/restore_points/search/search_post_request_body.py b/msgraph_beta/generated/solutions/backup_restore/restore_points/search/search_post_request_body.py index cbf4575c284..5a552fa46a5 100644 --- a/msgraph_beta/generated/solutions/backup_restore/restore_points/search/search_post_request_body.py +++ b/msgraph_beta/generated/solutions/backup_restore/restore_points/search/search_post_request_body.py @@ -20,6 +20,8 @@ class SearchPostRequestBody(AdditionalDataHolder, BackedModel, Parsable): additional_data: dict[str, Any] = field(default_factory=dict) # The artifactQuery property artifact_query: Optional[ArtifactQuery] = None + # The policyId property + policy_id: Optional[str] = None # The protectionTimePeriod property protection_time_period: Optional[TimePeriod] = None # The protectionUnitIds property @@ -57,6 +59,7 @@ def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: fields: dict[str, Callable[[Any], None]] = { "artifactQuery": lambda n : setattr(self, 'artifact_query', n.get_object_value(ArtifactQuery)), + "policyId": lambda n : setattr(self, 'policy_id', n.get_str_value()), "protectionTimePeriod": lambda n : setattr(self, 'protection_time_period', n.get_object_value(TimePeriod)), "protectionUnitIds": lambda n : setattr(self, 'protection_unit_ids', n.get_collection_of_primitive_values(str)), "restorePointPreference": lambda n : setattr(self, 'restore_point_preference', n.get_enum_value(RestorePointPreference)), @@ -73,6 +76,7 @@ def serialize(self,writer: SerializationWriter) -> None: if writer is None: raise TypeError("writer cannot be null.") writer.write_object_value("artifactQuery", self.artifact_query) + writer.write_str_value("policyId", self.policy_id) writer.write_object_value("protectionTimePeriod", self.protection_time_period) writer.write_collection_of_primitive_values("protectionUnitIds", self.protection_unit_ids) writer.write_enum_value("restorePointPreference", self.restore_point_preference) diff --git a/msgraph_beta/generated/solutions/backup_restore/restore_points/search/search_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/restore_points/search/search_request_builder.py index c353f213adc..b39b91beb2f 100644 --- a/msgraph_beta/generated/solutions/backup_restore/restore_points/search/search_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/restore_points/search/search_request_builder.py @@ -33,13 +33,12 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d async def post(self,body: SearchPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[RestorePointSearchResponse]: """ - Search for the restorePoint objects associated with a protectionUnit. + Search for the restorePoint objects associated with a protectionUnit. Optionally provide policyId to scope the search to a protection policy and validate that the specified protection units belong to that policy. param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestorePointSearchResponse] Find more info here: https://learn.microsoft.com/graph/api/restorepoint-search?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -58,12 +57,11 @@ async def post(self,body: SearchPostRequestBody, request_configuration: Optional def to_post_request_information(self,body: SearchPostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation: """ - Search for the restorePoint objects associated with a protectionUnit. + Search for the restorePoint objects associated with a protectionUnit. Optionally provide policyId to scope the search to a protection policy and validate that the specified protection units belong to that policy. param body: The request body param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> SearchRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SearchRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SearchRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/restore_sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/restore_sessions/count/count_request_builder.py index 8e0d71494f8..cd7d30188c8 100644 --- a/msgraph_beta/generated/solutions/backup_restore/restore_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/restore_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/restore_sessions/item/activate/activate_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/restore_sessions/item/activate/activate_request_builder.py index a8d43c1b725..c1c0c87fa89 100644 --- a/msgraph_beta/generated/solutions/backup_restore/restore_sessions/item/activate/activate_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/restore_sessions/item/activate/activate_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[RestoreSessionBase] Find more info here: https://learn.microsoft.com/graph/api/restoresessionbase-activate?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> ActivateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ActivateRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ActivateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/restore_sessions/item/restore_session_base_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/restore_sessions/item/restore_session_base_item_request_builder.py index c6b4b8d838c..89ca6bdbcb3 100644 --- a/msgraph_beta/generated/solutions/backup_restore/restore_sessions/item/restore_session_base_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/restore_sessions/item/restore_session_base_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/restoresessionbase-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RestoreS Returns: Optional[RestoreSessionBase] Find more info here: https://learn.microsoft.com/graph/api/restoresessionbase-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: RestoreSessionBase, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestoreSessionBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: RestoreSessionBase, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> RestoreSessionBaseItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RestoreSessionBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RestoreSessionBaseItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/restore_sessions/restore_sessions_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/restore_sessions/restore_sessions_request_builder.py index d0a6ab2a20f..af9c779c855 100644 --- a/msgraph_beta/generated/solutions/backup_restore/restore_sessions/restore_sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/restore_sessions/restore_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_restore_session_base_id(self,restore_session_base_id: str) -> RestoreSess param restore_session_base_id: The unique identifier of restoreSessionBase Returns: RestoreSessionBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if restore_session_base_id is None: raise TypeError("restore_session_base_id cannot be null.") from .item.restore_session_base_item_request_builder import RestoreSessionBaseItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RestoreS Returns: Optional[RestoreSessionBaseCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-restoresessions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: RestoreSessionBase, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestoreSessionBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: RestoreSessionBase, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> RestoreSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RestoreSessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RestoreSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/service_apps/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/service_apps/count/count_request_builder.py index a827f357060..2bdf8c6fc44 100644 --- a/msgraph_beta/generated/solutions/backup_restore/service_apps/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/service_apps/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/service_apps/item/activate/activate_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/service_apps/item/activate/activate_request_builder.py index d0a540f8125..8106b9c3d1a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/service_apps/item/activate/activate_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/service_apps/item/activate/activate_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: ActivatePostRequestBody, request_configuration: Option Returns: Optional[ServiceApp] Find more info here: https://learn.microsoft.com/graph/api/serviceapp-activate?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: ActivatePostRequestBody, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> ActivateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ActivateRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ActivateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/service_apps/item/deactivate/deactivate_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/service_apps/item/deactivate/deactivate_request_builder.py index 1f605607ef4..8055e2cbd4f 100644 --- a/msgraph_beta/generated/solutions/backup_restore/service_apps/item/deactivate/deactivate_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/service_apps/item/deactivate/deactivate_request_builder.py @@ -37,7 +37,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[ServiceApp] Find more info here: https://learn.microsoft.com/graph/api/serviceapp-deactivate?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> DeactivateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DeactivateRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DeactivateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/service_apps/item/service_app_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/service_apps/item/service_app_item_request_builder.py index d007c78c9f8..d2d1ed5f6b3 100644 --- a/msgraph_beta/generated/solutions/backup_restore/service_apps/item/service_app_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/service_apps/item/service_app_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-delete-serviceapps?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceA Returns: Optional[ServiceApp] Find more info here: https://learn.microsoft.com/graph/api/serviceapp-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: ServiceApp, request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[ServiceApp] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: ServiceApp, request_configuration: O param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> ServiceAppItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceAppItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceAppItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/service_apps/service_apps_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/service_apps/service_apps_request_builder.py index 8ed89e10acc..39284e854a5 100644 --- a/msgraph_beta/generated/solutions/backup_restore/service_apps/service_apps_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/service_apps/service_apps_request_builder.py @@ -39,7 +39,6 @@ def by_service_app_id(self,service_app_id: str) -> ServiceAppItemRequestBuilder: param service_app_id: The unique identifier of serviceApp Returns: ServiceAppItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if service_app_id is None: raise TypeError("service_app_id cannot be null.") from .item.service_app_item_request_builder import ServiceAppItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[ServiceA Returns: Optional[ServiceAppCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-serviceapps?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: ServiceApp, request_configuration: Optional[RequestCon Returns: Optional[ServiceApp] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-post-serviceapps?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: ServiceApp, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> ServiceAppsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServiceAppsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServiceAppsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/count/count_request_builder.py index a2a56c825d2..7aa3d6c5709 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/item/share_point_browse_session_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/item/share_point_browse_session_item_request_builder.py index 0a9755796ab..62eeaa41b7c 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/item/share_point_browse_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/item/share_point_browse_session_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharePoi Returns: Optional[SharePointBrowseSession] Find more info here: https://learn.microsoft.com/graph/api/sharepointbrowsesession-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: SharePointBrowseSession, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointBrowseSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: SharePointBrowseSession, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> SharePointBrowseSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SharePointBrowseSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SharePointBrowseSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/share_point_browse_sessions_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/share_point_browse_sessions_request_builder.py index e4a4f795873..b92b8c5060a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/share_point_browse_sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_browse_sessions/share_point_browse_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_share_point_browse_session_id(self,share_point_browse_session_id: str) -> param share_point_browse_session_id: The unique identifier of sharePointBrowseSession Returns: SharePointBrowseSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if share_point_browse_session_id is None: raise TypeError("share_point_browse_session_id cannot be null.") from .item.share_point_browse_session_item_request_builder import SharePointBrowseSessionItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharePoi Returns: Optional[SharePointBrowseSessionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-sharepointbrowsesessions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: SharePointBrowseSession, request_configuration: Option Returns: Optional[SharePointBrowseSession] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointbrowsesessions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: SharePointBrowseSession, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> SharePointBrowseSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SharePointBrowseSessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SharePointBrowseSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/count/count_request_builder.py index 5ebaabc9f80..5bc7ffb1d3c 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/share_point_protection_policy_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/share_point_protection_policy_item_request_builder.py index f291ebd75d8..61d948c3208 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/share_point_protection_policy_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/share_point_protection_policy_item_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharePoi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointProtectionPolicy] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: SharePointProtectionPolicy, request_configuration: Op Returns: Optional[SharePointProtectionPolicy] Find more info here: https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: SharePointProtectionPolicy, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> SharePointProtectionPolicyItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SharePointProtectionPolicyItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SharePointProtectionPolicyItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/count/count_request_builder.py index 3b0655b49d7..99fc522e4e6 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/item/site_exclusion_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/item/site_exclusion_unit_item_request_builder.py index 362aaf75a42..6ba6e09c7f5 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/item/site_exclusion_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/item/site_exclusion_unit_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteExcl Returns: Optional[SiteExclusionUnit] Find more info here: https://learn.microsoft.com/graph/api/siteexclusionunit-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> SiteExclusionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteExclusionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/site_exclusion_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/site_exclusion_units_request_builder.py index 91f2a32380d..c65bde194bb 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/site_exclusion_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units/site_exclusion_units_request_builder.py @@ -38,7 +38,6 @@ def by_site_exclusion_unit_id(self,site_exclusion_unit_id: str) -> SiteExclusion param site_exclusion_unit_id: The unique identifier of siteExclusionUnit Returns: SiteExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_exclusion_unit_id is None: raise TypeError("site_exclusion_unit_id cannot be null.") from .item.site_exclusion_unit_item_request_builder import SiteExclusionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteExcl Returns: Optional[SiteExclusionUnitCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteexclusionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> SiteExclusionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteExclusionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteExclusionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/count/count_request_builder.py index d187ca7d458..5967152ed0a 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/item/site_exclusion_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/item/site_exclusion_units_bulk_addition_job_item_request_builder.py index 1285afa751e..339e841b95d 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/item/site_exclusion_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/item/site_exclusion_units_bulk_addition_job_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteExcl Returns: Optional[SiteExclusionUnitsBulkAdditionJob] Find more info here: https://learn.microsoft.com/graph/api/siteexclusionunitsbulkadditionjob-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> SiteExclusionUnitsBulkAdditionJobItemRequestB param raw_url: The raw URL to use for the request builder. Returns: SiteExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteExclusionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/site_exclusion_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/site_exclusion_units_bulk_addition_jobs_request_builder.py index a4481033a97..022b3eaacc6 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/site_exclusion_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_exclusion_units_bulk_addition_jobs/site_exclusion_units_bulk_addition_jobs_request_builder.py @@ -38,7 +38,6 @@ def by_site_exclusion_units_bulk_addition_job_id(self,site_exclusion_units_bulk_ param site_exclusion_units_bulk_addition_job_id: The unique identifier of siteExclusionUnitsBulkAdditionJob Returns: SiteExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_exclusion_units_bulk_addition_job_id is None: raise TypeError("site_exclusion_units_bulk_addition_job_id cannot be null.") from .item.site_exclusion_units_bulk_addition_job_item_request_builder import SiteExclusionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteExcl Returns: Optional[SiteExclusionUnitsBulkAdditionJobCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteexclusionunitsbulkadditionjobs?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> SiteExclusionUnitsBulkAdditionJobsRequestBuil param raw_url: The raw URL to use for the request builder. Returns: SiteExclusionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteExclusionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/count/count_request_builder.py index 061fb42f8d3..fa76ea8c580 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/item/site_protection_rule_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/item/site_protection_rule_item_request_builder.py index 7474cc9ffb6..74d4339b369 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/item/site_protection_rule_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/item/site_protection_rule_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteProt Returns: Optional[SiteProtectionRule] Find more info here: https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> SiteProtectionRuleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteProtectionRuleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/site_inclusion_rules_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/site_inclusion_rules_request_builder.py index 4c87eacc724..894e453845e 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/site_inclusion_rules_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_inclusion_rules/site_inclusion_rules_request_builder.py @@ -38,7 +38,6 @@ def by_site_protection_rule_id(self,site_protection_rule_id: str) -> SiteProtect param site_protection_rule_id: The unique identifier of siteProtectionRule Returns: SiteProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_protection_rule_id is None: raise TypeError("site_protection_rule_id cannot be null.") from .item.site_protection_rule_item_request_builder import SiteProtectionRuleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteIncl Returns: Optional[SiteProtectionRuleCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteinclusionrules?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> SiteInclusionRulesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteInclusionRulesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteInclusionRulesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/count/count_request_builder.py index 41351a0cea9..72468c0ab08 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/item/site_protection_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/item/site_protection_unit_item_request_builder.py index fb8b2c0bb4e..b89ca9d38a1 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/item/site_protection_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/item/site_protection_unit_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteProt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> SiteProtectionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteProtectionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/site_protection_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/site_protection_units_request_builder.py index 43926dbd92e..87e84dfb584 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/site_protection_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units/site_protection_units_request_builder.py @@ -38,7 +38,6 @@ def by_site_protection_unit_id(self,site_protection_unit_id: str) -> SiteProtect param site_protection_unit_id: The unique identifier of siteProtectionUnit Returns: SiteProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_protection_unit_id is None: raise TypeError("site_protection_unit_id cannot be null.") from .item.site_protection_unit_item_request_builder import SiteProtectionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteProt Returns: Optional[SiteProtectionUnitCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> SiteProtectionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteProtectionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteProtectionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/count/count_request_builder.py index 41920ce1992..9ad95e8b89e 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/item/site_protection_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/item/site_protection_units_bulk_addition_job_item_request_builder.py index d26b0c880af..a85c479696c 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/item/site_protection_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/item/site_protection_units_bulk_addition_job_item_request_builder.py @@ -37,7 +37,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteProt Returns: Optional[SiteProtectionUnitsBulkAdditionJob] Find more info here: https://learn.microsoft.com/graph/api/siteprotectionunitsbulkadditionjobs-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -58,7 +57,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +68,6 @@ def with_url(self,raw_url: str) -> SiteProtectionUnitsBulkAdditionJobItemRequest param raw_url: The raw URL to use for the request builder. Returns: SiteProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteProtectionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/site_protection_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/site_protection_units_bulk_addition_jobs_request_builder.py index 2e29df692c1..1bbee488794 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/site_protection_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/item/site_protection_units_bulk_addition_jobs/site_protection_units_bulk_addition_jobs_request_builder.py @@ -38,7 +38,6 @@ def by_site_protection_units_bulk_addition_job_id(self,site_protection_units_bul param site_protection_units_bulk_addition_job_id: The unique identifier of siteProtectionUnitsBulkAdditionJob Returns: SiteProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_protection_units_bulk_addition_job_id is None: raise TypeError("site_protection_units_bulk_addition_job_id cannot be null.") from .item.site_protection_units_bulk_addition_job_item_request_builder import SiteProtectionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteProt Returns: Optional[SiteProtectionUnitsBulkAdditionJobCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteprotectionunitsbulkadditionjobs?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> SiteProtectionUnitsBulkAdditionJobsRequestBui param raw_url: The raw URL to use for the request builder. Returns: SiteProtectionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteProtectionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/share_point_protection_policies_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/share_point_protection_policies_request_builder.py index 63b36260d53..38bea519acd 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/share_point_protection_policies_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_protection_policies/share_point_protection_policies_request_builder.py @@ -39,7 +39,6 @@ def by_share_point_protection_policy_id(self,share_point_protection_policy_id: s param share_point_protection_policy_id: The unique identifier of sharePointProtectionPolicy Returns: SharePointProtectionPolicyItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if share_point_protection_policy_id is None: raise TypeError("share_point_protection_policy_id cannot be null.") from .item.share_point_protection_policy_item_request_builder import SharePointProtectionPolicyItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharePoi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointProtectionPolicyCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: SharePointProtectionPolicy, request_configuration: Opt Returns: Optional[SharePointProtectionPolicy] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointprotectionpolicies?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: SharePointProtectionPolicy, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> SharePointProtectionPoliciesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SharePointProtectionPoliciesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SharePointProtectionPoliciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/count/count_request_builder.py index c7e55d7370e..d0dc8a2d541 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/count/count_request_builder.py index 1530a816fb3..64c076a4966 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/granular_site_restore_artifacts_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/granular_site_restore_artifacts_request_builder.py index 9f5f29c9a71..b8935a7a167 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/granular_site_restore_artifacts_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/granular_site_restore_artifacts_request_builder.py @@ -39,7 +39,6 @@ def by_granular_site_restore_artifact_id(self,granular_site_restore_artifact_id: param granular_site_restore_artifact_id: The unique identifier of granularSiteRestoreArtifact Returns: GranularSiteRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if granular_site_restore_artifact_id is None: raise TypeError("granular_site_restore_artifact_id cannot be null.") from .item.granular_site_restore_artifact_item_request_builder import GranularSiteRestoreArtifactItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Granular Returns: Optional[GranularSiteRestoreArtifactCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/sharepointrestoresession-list-granularsiterestoreartifacts?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: GranularSiteRestoreArtifact, request_configuration: Op param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GranularSiteRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: GranularSiteRestoreArtifact, request_ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> GranularSiteRestoreArtifactsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GranularSiteRestoreArtifactsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GranularSiteRestoreArtifactsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/item/granular_site_restore_artifact_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/item/granular_site_restore_artifact_item_request_builder.py index 86bb1b32bf5..ce0626e4fb8 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/item/granular_site_restore_artifact_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/granular_site_restore_artifacts/item/granular_site_restore_artifact_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Granular param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GranularSiteRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: GranularSiteRestoreArtifact, request_configuration: O param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GranularSiteRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: GranularSiteRestoreArtifact, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> GranularSiteRestoreArtifactItemRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: GranularSiteRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GranularSiteRestoreArtifactItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/share_point_restore_session_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/share_point_restore_session_item_request_builder.py index a1b7d8ba1ad..4b6abc4bb01 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/share_point_restore_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/share_point_restore_session_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharePoi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointRestoreSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: SharePointRestoreSession, request_configuration: Opti Returns: Optional[SharePointRestoreSession] Find more info here: https://learn.microsoft.com/graph/api/sharepointrestoresession-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: SharePointRestoreSession, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> SharePointRestoreSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SharePointRestoreSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SharePointRestoreSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/count/count_request_builder.py index a54c282ad91..e12b7abb87f 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/item/restore_point/restore_point_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/item/restore_point/restore_point_request_builder.py index 70398c6f376..5ea88426abd 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/item/restore_point/restore_point_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/item/restore_point/restore_point_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[RestoreP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[RestorePoint] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> RestorePointRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RestorePointRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RestorePointRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/item/site_restore_artifact_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/item/site_restore_artifact_item_request_builder.py index 5dcdaca20ea..1346f8472e6 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/item/site_restore_artifact_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/item/site_restore_artifact_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteRest param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: SiteRestoreArtifact, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: SiteRestoreArtifact, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> SiteRestoreArtifactItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteRestoreArtifactItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/site_restore_artifacts_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/site_restore_artifacts_request_builder.py index edd4f9d9c50..962a646dce4 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/site_restore_artifacts_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts/site_restore_artifacts_request_builder.py @@ -39,7 +39,6 @@ def by_site_restore_artifact_id(self,site_restore_artifact_id: str) -> SiteResto param site_restore_artifact_id: The unique identifier of siteRestoreArtifact Returns: SiteRestoreArtifactItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_restore_artifact_id is None: raise TypeError("site_restore_artifact_id cannot be null.") from .item.site_restore_artifact_item_request_builder import SiteRestoreArtifactItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteRest Returns: Optional[SiteRestoreArtifactCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifacts?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: SiteRestoreArtifact, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteRestoreArtifact] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: SiteRestoreArtifact, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> SiteRestoreArtifactsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteRestoreArtifactsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteRestoreArtifactsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/count/count_request_builder.py index 781a1ac9593..2a050cdcca0 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/item/site_restore_artifacts_bulk_addition_request_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/item/site_restore_artifacts_bulk_addition_request_item_request_builder.py index 6e9e1634116..f150316bb51 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/item/site_restore_artifacts_bulk_addition_request_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/item/site_restore_artifacts_bulk_addition_request_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteRest Returns: Optional[SiteRestoreArtifactsBulkAdditionRequest] Find more info here: https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: SiteRestoreArtifactsBulkAdditionRequest, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteRestoreArtifactsBulkAdditionRequest] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: SiteRestoreArtifactsBulkAdditionRequ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> SiteRestoreArtifactsBulkAdditionRequestItemRe param raw_url: The raw URL to use for the request builder. Returns: SiteRestoreArtifactsBulkAdditionRequestItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteRestoreArtifactsBulkAdditionRequestItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/site_restore_artifacts_bulk_addition_requests_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/site_restore_artifacts_bulk_addition_requests_request_builder.py index f2c381a2576..eabbc6e10d3 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/site_restore_artifacts_bulk_addition_requests_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/item/site_restore_artifacts_bulk_addition_requests/site_restore_artifacts_bulk_addition_requests_request_builder.py @@ -39,7 +39,6 @@ def by_site_restore_artifacts_bulk_addition_request_id(self,site_restore_artifac param site_restore_artifacts_bulk_addition_request_id: The unique identifier of siteRestoreArtifactsBulkAdditionRequest Returns: SiteRestoreArtifactsBulkAdditionRequestItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_restore_artifacts_bulk_addition_request_id is None: raise TypeError("site_restore_artifacts_bulk_addition_request_id cannot be null.") from .item.site_restore_artifacts_bulk_addition_request_item_request_builder import SiteRestoreArtifactsBulkAdditionRequestItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteRest Returns: Optional[SiteRestoreArtifactsBulkAdditionRequestCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifactsbulkadditionrequests?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: SiteRestoreArtifactsBulkAdditionRequest, request_confi Returns: Optional[SiteRestoreArtifactsBulkAdditionRequest] Find more info here: https://learn.microsoft.com/graph/api/sharepointrestoresession-post-siterestoreartifactsbulkadditionrequests?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: SiteRestoreArtifactsBulkAdditionReque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> SiteRestoreArtifactsBulkAdditionRequestsReque param raw_url: The raw URL to use for the request builder. Returns: SiteRestoreArtifactsBulkAdditionRequestsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteRestoreArtifactsBulkAdditionRequestsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/share_point_restore_sessions_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/share_point_restore_sessions_request_builder.py index 955c3b79435..50466a23d4d 100644 --- a/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/share_point_restore_sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/share_point_restore_sessions/share_point_restore_sessions_request_builder.py @@ -39,7 +39,6 @@ def by_share_point_restore_session_id(self,share_point_restore_session_id: str) param share_point_restore_session_id: The unique identifier of sharePointRestoreSession Returns: SharePointRestoreSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if share_point_restore_session_id is None: raise TypeError("share_point_restore_session_id cannot be null.") from .item.share_point_restore_session_item_request_builder import SharePointRestoreSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharePoi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointRestoreSessionCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: SharePointRestoreSession, request_configuration: Optio Returns: Optional[SharePointRestoreSession] Find more info here: https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointrestoresessions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: SharePointRestoreSession, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> SharePointRestoreSessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SharePointRestoreSessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SharePointRestoreSessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/count/count_request_builder.py index 05a5a6374ba..787b4b6f602 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/item/site_exclusion_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/item/site_exclusion_unit_item_request_builder.py index 9c07f6c2ebe..c00228c6b70 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/item/site_exclusion_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/item/site_exclusion_unit_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteExcl param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteExclusionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: SiteExclusionUnit, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteExclusionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: SiteExclusionUnit, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> SiteExclusionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteExclusionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/site_exclusion_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/site_exclusion_units_request_builder.py index 818025332fc..92def6a22b3 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/site_exclusion_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units/site_exclusion_units_request_builder.py @@ -39,7 +39,6 @@ def by_site_exclusion_unit_id(self,site_exclusion_unit_id: str) -> SiteExclusion param site_exclusion_unit_id: The unique identifier of siteExclusionUnit Returns: SiteExclusionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_exclusion_unit_id is None: raise TypeError("site_exclusion_unit_id cannot be null.") from .item.site_exclusion_unit_item_request_builder import SiteExclusionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteExcl param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteExclusionUnitCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: SiteExclusionUnit, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteExclusionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: SiteExclusionUnit, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> SiteExclusionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteExclusionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteExclusionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/count/count_request_builder.py index 249a349551e..0af9d1c6530 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/item/site_exclusion_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/item/site_exclusion_units_bulk_addition_job_item_request_builder.py index 3beaf86534a..3cbade64ec4 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/item/site_exclusion_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/item/site_exclusion_units_bulk_addition_job_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteExcl param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteExclusionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: SiteExclusionUnitsBulkAdditionJob, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteExclusionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: SiteExclusionUnitsBulkAdditionJob, r param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> SiteExclusionUnitsBulkAdditionJobItemRequestB param raw_url: The raw URL to use for the request builder. Returns: SiteExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteExclusionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/site_exclusion_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/site_exclusion_units_bulk_addition_jobs_request_builder.py index 4db20ec8766..c5aadb4a980 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/site_exclusion_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_exclusion_units_bulk_addition_jobs/site_exclusion_units_bulk_addition_jobs_request_builder.py @@ -39,7 +39,6 @@ def by_site_exclusion_units_bulk_addition_job_id(self,site_exclusion_units_bulk_ param site_exclusion_units_bulk_addition_job_id: The unique identifier of siteExclusionUnitsBulkAdditionJob Returns: SiteExclusionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_exclusion_units_bulk_addition_job_id is None: raise TypeError("site_exclusion_units_bulk_addition_job_id cannot be null.") from .item.site_exclusion_units_bulk_addition_job_item_request_builder import SiteExclusionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteExcl param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteExclusionUnitsBulkAdditionJobCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: SiteExclusionUnitsBulkAdditionJob, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteExclusionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: SiteExclusionUnitsBulkAdditionJob, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> SiteExclusionUnitsBulkAdditionJobsRequestBuil param raw_url: The raw URL to use for the request builder. Returns: SiteExclusionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteExclusionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/count/count_request_builder.py index b3df7cc19ab..6dbea59cd49 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/item/site_protection_rule_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/item/site_protection_rule_item_request_builder.py index a2a1d7bbbe0..034d1243f03 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/item/site_protection_rule_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/item/site_protection_rule_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteProt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionRule] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: SiteProtectionRule, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionRule] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: SiteProtectionRule, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> SiteProtectionRuleItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteProtectionRuleItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/site_inclusion_rules_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/site_inclusion_rules_request_builder.py index bc99cb7c0ea..9c70cfe8d1f 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/site_inclusion_rules_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_inclusion_rules/site_inclusion_rules_request_builder.py @@ -39,7 +39,6 @@ def by_site_protection_rule_id(self,site_protection_rule_id: str) -> SiteProtect param site_protection_rule_id: The unique identifier of siteProtectionRule Returns: SiteProtectionRuleItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_protection_rule_id is None: raise TypeError("site_protection_rule_id cannot be null.") from .item.site_protection_rule_item_request_builder import SiteProtectionRuleItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteIncl param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionRuleCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: SiteProtectionRule, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionRule] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: SiteProtectionRule, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> SiteInclusionRulesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteInclusionRulesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteInclusionRulesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_protection_units/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_protection_units/count/count_request_builder.py index 590bc3f93f2..3d78d0796f2 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_protection_units/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_protection_units/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_protection_units/item/site_protection_unit_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_protection_units/item/site_protection_unit_item_request_builder.py index c3b7bcdeff6..86448bdb06e 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_protection_units/item/site_protection_unit_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_protection_units/item/site_protection_unit_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteProt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: SiteProtectionUnit, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: SiteProtectionUnit, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> SiteProtectionUnitItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteProtectionUnitItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_protection_units/site_protection_units_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_protection_units/site_protection_units_request_builder.py index f83fe214bfa..465ad5e24cb 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_protection_units/site_protection_units_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_protection_units/site_protection_units_request_builder.py @@ -39,7 +39,6 @@ def by_site_protection_unit_id(self,site_protection_unit_id: str) -> SiteProtect param site_protection_unit_id: The unique identifier of siteProtectionUnit Returns: SiteProtectionUnitItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_protection_unit_id is None: raise TypeError("site_protection_unit_id cannot be null.") from .item.site_protection_unit_item_request_builder import SiteProtectionUnitItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteProt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionUnitCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: SiteProtectionUnit, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionUnit] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: SiteProtectionUnit, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> SiteProtectionUnitsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SiteProtectionUnitsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteProtectionUnitsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/count/count_request_builder.py index 186fbd705fb..47248bbd0ee 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/item/site_protection_units_bulk_addition_job_item_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/item/site_protection_units_bulk_addition_job_item_request_builder.py index f0b7641c3d8..df3310ba282 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/item/site_protection_units_bulk_addition_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/item/site_protection_units_bulk_addition_job_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteProt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: SiteProtectionUnitsBulkAdditionJob, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: SiteProtectionUnitsBulkAdditionJob, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> SiteProtectionUnitsBulkAdditionJobItemRequest param raw_url: The raw URL to use for the request builder. Returns: SiteProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteProtectionUnitsBulkAdditionJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/site_protection_units_bulk_addition_jobs_request_builder.py b/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/site_protection_units_bulk_addition_jobs_request_builder.py index 4e2478f8353..732cc3a5da5 100644 --- a/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/site_protection_units_bulk_addition_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/backup_restore/site_protection_units_bulk_addition_jobs/site_protection_units_bulk_addition_jobs_request_builder.py @@ -39,7 +39,6 @@ def by_site_protection_units_bulk_addition_job_id(self,site_protection_units_bul param site_protection_units_bulk_addition_job_id: The unique identifier of siteProtectionUnitsBulkAdditionJob Returns: SiteProtectionUnitsBulkAdditionJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if site_protection_units_bulk_addition_job_id is None: raise TypeError("site_protection_units_bulk_addition_job_id cannot be null.") from .item.site_protection_units_bulk_addition_job_item_request_builder import SiteProtectionUnitsBulkAdditionJobItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SiteProt param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionUnitsBulkAdditionJobCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: SiteProtectionUnitsBulkAdditionJob, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SiteProtectionUnitsBulkAdditionJob] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: SiteProtectionUnitsBulkAdditionJob, r param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> SiteProtectionUnitsBulkAdditionJobsRequestBui param raw_url: The raw URL to use for the request builder. Returns: SiteProtectionUnitsBulkAdditionJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SiteProtectionUnitsBulkAdditionJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/booking_businesses_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/booking_businesses_request_builder.py index fc92a595b3c..8f78ec466dd 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/booking_businesses_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/booking_businesses_request_builder.py @@ -39,7 +39,6 @@ def by_booking_business_id(self,booking_business_id: str) -> BookingBusinessItem param booking_business_id: The unique identifier of bookingBusiness Returns: BookingBusinessItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if booking_business_id is None: raise TypeError("booking_business_id cannot be null.") from .item.booking_business_item_request_builder import BookingBusinessItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BookingB param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingBusinessCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: BookingBusiness, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingBusiness] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: BookingBusiness, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> BookingBusinessesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BookingBusinessesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BookingBusinessesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/count/count_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/count/count_request_builder.py index 1f0591bf5e0..826d2741eb2 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/appointments/appointments_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/appointments/appointments_request_builder.py index eb76bbf24f3..18a5c64940f 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/appointments/appointments_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/appointments/appointments_request_builder.py @@ -39,7 +39,6 @@ def by_booking_appointment_id(self,booking_appointment_id: str) -> BookingAppoin param booking_appointment_id: The unique identifier of bookingAppointment Returns: BookingAppointmentItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if booking_appointment_id is None: raise TypeError("booking_appointment_id cannot be null.") from .item.booking_appointment_item_request_builder import BookingAppointmentItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Appointm param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingAppointmentCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: BookingAppointment, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingAppointment] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: BookingAppointment, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AppointmentsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AppointmentsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AppointmentsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/appointments/count/count_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/appointments/count/count_request_builder.py index 7b438962e8c..6ba6f5913a6 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/appointments/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/appointments/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/appointments/item/booking_appointment_item_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/appointments/item/booking_appointment_item_request_builder.py index 0c4c13e013f..0f02b8a6120 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/appointments/item/booking_appointment_item_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/appointments/item/booking_appointment_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/bookingappointment-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BookingA Returns: Optional[BookingAppointment] Find more info here: https://learn.microsoft.com/graph/api/bookingappointment-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: BookingAppointment, request_configuration: Optional[R Returns: Optional[BookingAppointment] Find more info here: https://learn.microsoft.com/graph/api/bookingappointment-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: BookingAppointment, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> BookingAppointmentItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BookingAppointmentItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BookingAppointmentItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/appointments/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/appointments/item/cancel/cancel_request_builder.py index 4f44a22a84c..11c13728eb7 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/appointments/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/appointments/item/cancel/cancel_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: CancelPostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: CancelPostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/booking_business_item_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/booking_business_item_request_builder.py index 2e599e47305..8d4b45faf1c 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/booking_business_item_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/booking_business_item_request_builder.py @@ -46,7 +46,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/bookingbusiness-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -65,7 +64,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BookingB param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingBusiness] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -87,7 +85,6 @@ async def patch(self,body: BookingBusiness, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingBusiness] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -110,7 +107,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -122,7 +118,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -135,7 +130,6 @@ def to_patch_request_information(self,body: BookingBusiness, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -150,7 +144,6 @@ def with_url(self,raw_url: str) -> BookingBusinessItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BookingBusinessItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BookingBusinessItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/calendar_view_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/calendar_view_request_builder.py index 5828e3aebcc..f7bbff19dae 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/calendar_view_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/calendar_view_request_builder.py @@ -39,7 +39,6 @@ def by_booking_appointment_id(self,booking_appointment_id: str) -> BookingAppoin param booking_appointment_id: The unique identifier of bookingAppointment Returns: BookingAppointmentItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if booking_appointment_id is None: raise TypeError("booking_appointment_id cannot be null.") from .item.booking_appointment_item_request_builder import BookingAppointmentItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Calendar param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingAppointmentCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: BookingAppointment, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingAppointment] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, '{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/calendarView?end={end}&start={start}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: BookingAppointment, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> CalendarViewRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CalendarViewRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CalendarViewRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/count/count_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/count/count_request_builder.py index 2c6bac79efe..81fccf7b3a5 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/item/booking_appointment_item_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/item/booking_appointment_item_request_builder.py index d88e7c79da5..6b18081781a 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/item/booking_appointment_item_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/item/booking_appointment_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BookingA param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingAppointment] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: BookingAppointment, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingAppointment] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, '{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/calendarView/{bookingAppointment%2Did}?end={end}&start={start}{&%24expand,%24select}', self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: BookingAppointment, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> BookingAppointmentItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BookingAppointmentItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BookingAppointmentItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/item/cancel/cancel_request_builder.py index c32bb2745a8..f8cf3a5c94b 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/calendar_view/item/cancel/cancel_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: CancelPostRequestBody, request_configuration: Optional Returns: None Find more info here: https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: CancelPostRequestBody, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/count/count_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/count/count_request_builder.py index 09c48df48ef..24b478a1c37 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/custom_questions_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/custom_questions_request_builder.py index 88ccbe2db7c..89478adaee1 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/custom_questions_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/custom_questions_request_builder.py @@ -39,7 +39,6 @@ def by_booking_custom_question_id(self,booking_custom_question_id: str) -> Booki param booking_custom_question_id: The unique identifier of bookingCustomQuestion Returns: BookingCustomQuestionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if booking_custom_question_id is None: raise TypeError("booking_custom_question_id cannot be null.") from .item.booking_custom_question_item_request_builder import BookingCustomQuestionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CustomQu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingCustomQuestionCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: BookingCustomQuestion, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingCustomQuestion] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: BookingCustomQuestion, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> CustomQuestionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CustomQuestionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomQuestionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/item/booking_custom_question_item_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/item/booking_custom_question_item_request_builder.py index 15707271ae9..ac944f3faf5 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/item/booking_custom_question_item_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/custom_questions/item/booking_custom_question_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BookingC param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingCustomQuestion] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: BookingCustomQuestion, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingCustomQuestion] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: BookingCustomQuestion, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> BookingCustomQuestionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BookingCustomQuestionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BookingCustomQuestionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/customers/count/count_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/customers/count/count_request_builder.py index c3b23b89383..7c396dee472 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/customers/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/customers/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/customers/customers_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/customers/customers_request_builder.py index 6c869c5c5c0..53c136d92f2 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/customers/customers_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/customers/customers_request_builder.py @@ -39,7 +39,6 @@ def by_booking_customer_id(self,booking_customer_id: str) -> BookingCustomerItem param booking_customer_id: The unique identifier of bookingCustomer Returns: BookingCustomerItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if booking_customer_id is None: raise TypeError("booking_customer_id cannot be null.") from .item.booking_customer_item_request_builder import BookingCustomerItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Customer param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingCustomerCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: BookingCustomer, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingCustomer] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: BookingCustomer, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> CustomersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CustomersRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CustomersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/customers/item/booking_customer_item_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/customers/item/booking_customer_item_request_builder.py index 0b80d3b617c..151bf990bb0 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/customers/item/booking_customer_item_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/customers/item/booking_customer_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BookingC param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingCustomer] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: BookingCustomer, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingCustomer] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: BookingCustomer, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> BookingCustomerItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BookingCustomerItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BookingCustomerItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/get_staff_availability/get_staff_availability_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/get_staff_availability/get_staff_availability_request_builder.py index b8970d06bae..a818d40513f 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/get_staff_availability/get_staff_availability_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/get_staff_availability/get_staff_availability_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: GetStaffAvailabilityPostRequestBody, request_configura Returns: Optional[GetStaffAvailabilityPostResponse] Find more info here: https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: GetStaffAvailabilityPostRequestBody, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> GetStaffAvailabilityRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GetStaffAvailabilityRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetStaffAvailabilityRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/publish/publish_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/publish/publish_request_builder.py index 15b5b02fa61..d2ca6d0b3c4 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/publish/publish_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/publish/publish_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> PublishRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PublishRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PublishRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/services/count/count_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/services/count/count_request_builder.py index 012b2545759..5819a5cf8e1 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/services/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/services/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/services/item/booking_service_item_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/services/item/booking_service_item_request_builder.py index a3376818234..b8ddbfb33a4 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/services/item/booking_service_item_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/services/item/booking_service_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BookingS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingService] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: BookingService, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingService] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: BookingService, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> BookingServiceItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BookingServiceItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BookingServiceItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/services/services_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/services/services_request_builder.py index fc6fff08a1e..e419ab6b2c1 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/services/services_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/services/services_request_builder.py @@ -39,7 +39,6 @@ def by_booking_service_id(self,booking_service_id: str) -> BookingServiceItemReq param booking_service_id: The unique identifier of bookingService Returns: BookingServiceItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if booking_service_id is None: raise TypeError("booking_service_id cannot be null.") from .item.booking_service_item_request_builder import BookingServiceItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Services param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingServiceCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: BookingService, request_configuration: Optional[Reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingService] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: BookingService, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> ServicesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ServicesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ServicesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/count/count_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/count/count_request_builder.py index db2f630c92c..db89d825e97 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/item/booking_staff_member_item_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/item/booking_staff_member_item_request_builder.py index a8816d43d03..f851cb725b7 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/item/booking_staff_member_item_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/item/booking_staff_member_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BookingS param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingStaffMember] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: BookingStaffMember, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingStaffMember] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: BookingStaffMember, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> BookingStaffMemberItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BookingStaffMemberItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BookingStaffMemberItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/staff_members_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/staff_members_request_builder.py index ed8b99f11bc..cd38afe43ac 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/staff_members_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/staff_members/staff_members_request_builder.py @@ -39,7 +39,6 @@ def by_booking_staff_member_id(self,booking_staff_member_id: str) -> BookingStaf param booking_staff_member_id: The unique identifier of bookingStaffMember Returns: BookingStaffMemberItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if booking_staff_member_id is None: raise TypeError("booking_staff_member_id cannot be null.") from .item.booking_staff_member_item_request_builder import BookingStaffMemberItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[StaffMem param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingStaffMemberCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: BookingStaffMember, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingStaffMember] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: BookingStaffMember, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> StaffMembersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: StaffMembersRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return StaffMembersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_businesses/item/unpublish/unpublish_request_builder.py b/msgraph_beta/generated/solutions/booking_businesses/item/unpublish/unpublish_request_builder.py index 58f336fb1c6..35d5ecd1f63 100644 --- a/msgraph_beta/generated/solutions/booking_businesses/item/unpublish/unpublish_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_businesses/item/unpublish/unpublish_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> UnpublishRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UnpublishRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UnpublishRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_currencies/booking_currencies_request_builder.py b/msgraph_beta/generated/solutions/booking_currencies/booking_currencies_request_builder.py index 92f8d8ac9fc..1ed6a91befe 100644 --- a/msgraph_beta/generated/solutions/booking_currencies/booking_currencies_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_currencies/booking_currencies_request_builder.py @@ -39,7 +39,6 @@ def by_booking_currency_id(self,booking_currency_id: str) -> BookingCurrencyItem param booking_currency_id: The unique identifier of bookingCurrency Returns: BookingCurrencyItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if booking_currency_id is None: raise TypeError("booking_currency_id cannot be null.") from .item.booking_currency_item_request_builder import BookingCurrencyItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BookingC Returns: Optional[BookingCurrencyCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/bookingcurrency-list?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: BookingCurrency, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingCurrency] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: BookingCurrency, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> BookingCurrenciesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BookingCurrenciesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BookingCurrenciesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_currencies/count/count_request_builder.py b/msgraph_beta/generated/solutions/booking_currencies/count/count_request_builder.py index 240586ad4b3..c978774130b 100644 --- a/msgraph_beta/generated/solutions/booking_currencies/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_currencies/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/booking_currencies/item/booking_currency_item_request_builder.py b/msgraph_beta/generated/solutions/booking_currencies/item/booking_currency_item_request_builder.py index 840d2cb178f..f2e3570318c 100644 --- a/msgraph_beta/generated/solutions/booking_currencies/item/booking_currency_item_request_builder.py +++ b/msgraph_beta/generated/solutions/booking_currencies/item/booking_currency_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BookingC Returns: Optional[BookingCurrency] Find more info here: https://learn.microsoft.com/graph/api/bookingcurrency-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: BookingCurrency, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BookingCurrency] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: BookingCurrency, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> BookingCurrencyItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BookingCurrencyItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BookingCurrencyItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/business_scenarios_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/business_scenarios_request_builder.py index 4a4f02ea744..fad2c916760 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/business_scenarios_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/business_scenarios_request_builder.py @@ -39,7 +39,6 @@ def by_business_scenario_id(self,business_scenario_id: str) -> BusinessScenarioI param business_scenario_id: The unique identifier of businessScenario Returns: BusinessScenarioItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if business_scenario_id is None: raise TypeError("business_scenario_id cannot be null.") from .item.business_scenario_item_request_builder import BusinessScenarioItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Business Returns: Optional[BusinessScenarioCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/solutionsroot-list-businessscenarios?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: BusinessScenario, request_configuration: Optional[Requ Returns: Optional[BusinessScenario] Find more info here: https://learn.microsoft.com/graph/api/solutionsroot-post-businessscenarios?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: BusinessScenario, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> BusinessScenariosRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BusinessScenariosRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BusinessScenariosRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/count/count_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/count/count_request_builder.py index d947526d3bb..6ba61b6b5b0 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/business_scenario_item_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/business_scenario_item_request_builder.py index 242fa1f69c3..26b8f6219f5 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/business_scenario_item_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/business_scenario_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/businessscenario-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Business Returns: Optional[BusinessScenario] Find more info here: https://learn.microsoft.com/graph/api/businessscenario-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: BusinessScenario, request_configuration: Optional[Req Returns: Optional[BusinessScenario] Find more info here: https://learn.microsoft.com/graph/api/businessscenario-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: BusinessScenario, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> BusinessScenarioItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BusinessScenarioItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BusinessScenarioItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/get_plan/get_plan_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/get_plan/get_plan_request_builder.py index bd564544b5a..4a45f195bd1 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/get_plan/get_plan_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/get_plan/get_plan_request_builder.py @@ -39,7 +39,6 @@ async def post(self,body: GetPlanPostRequestBody, request_configuration: Optiona Returns: Optional[BusinessScenarioPlanReference] Find more info here: https://learn.microsoft.com/graph/api/businessscenarioplanner-getplan?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -63,7 +62,6 @@ def to_post_request_information(self,body: GetPlanPostRequestBody, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -78,7 +76,6 @@ def with_url(self,raw_url: str) -> GetPlanRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GetPlanRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetPlanRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/count/count_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/count/count_request_builder.py index d282787f508..bfb0fe9c4de 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/item/planner_plan_configuration_localization_item_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/item/planner_plan_configuration_localization_item_request_builder.py index 1f46a45e868..a8986a441b4 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/item/planner_plan_configuration_localization_item_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/item/planner_plan_configuration_localization_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[PlannerP param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerPlanConfigurationLocalization] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: PlannerPlanConfigurationLocalization, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerPlanConfigurationLocalization] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: PlannerPlanConfigurationLocalization param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> PlannerPlanConfigurationLocalizationItemReque param raw_url: The raw URL to use for the request builder. Returns: PlannerPlanConfigurationLocalizationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PlannerPlanConfigurationLocalizationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/localizations_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/localizations_request_builder.py index 268e6bd699c..739653f301f 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/localizations_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/localizations/localizations_request_builder.py @@ -39,7 +39,6 @@ def by_planner_plan_configuration_localization_id(self,planner_plan_configuratio param planner_plan_configuration_localization_id: The unique identifier of plannerPlanConfigurationLocalization Returns: PlannerPlanConfigurationLocalizationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if planner_plan_configuration_localization_id is None: raise TypeError("planner_plan_configuration_localization_id cannot be null.") from .item.planner_plan_configuration_localization_item_request_builder import PlannerPlanConfigurationLocalizationItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Localiza Returns: Optional[PlannerPlanConfigurationLocalizationCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/plannerplanconfiguration-list-localizations?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: PlannerPlanConfigurationLocalization, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerPlanConfigurationLocalization] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: PlannerPlanConfigurationLocalization, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> LocalizationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: LocalizationsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return LocalizationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/plan_configuration_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/plan_configuration_request_builder.py index 7498f00d400..1c8a43b889c 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/plan_configuration_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/plan_configuration/plan_configuration_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[PlanConf Returns: Optional[PlannerPlanConfiguration] Find more info here: https://learn.microsoft.com/graph/api/plannerplanconfiguration-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: PlannerPlanConfiguration, request_configuration: Opti Returns: Optional[PlannerPlanConfiguration] Find more info here: https://learn.microsoft.com/graph/api/plannerplanconfiguration-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: PlannerPlanConfiguration, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> PlanConfigurationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PlanConfigurationRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PlanConfigurationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/planner_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/planner_request_builder.py index 8ace0213cc1..a1ba9700ec8 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/planner_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/planner_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[PlannerR Returns: Optional[BusinessScenarioPlanner] Find more info here: https://learn.microsoft.com/graph/api/businessscenarioplanner-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: BusinessScenarioPlanner, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[BusinessScenarioPlanner] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: BusinessScenarioPlanner, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> PlannerRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PlannerRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PlannerRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/task_configuration/task_configuration_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/task_configuration/task_configuration_request_builder.py index 6cc30ffea43..942b7b6585d 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/task_configuration/task_configuration_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/task_configuration/task_configuration_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TaskConf Returns: Optional[PlannerTaskConfiguration] Find more info here: https://learn.microsoft.com/graph/api/plannertaskconfiguration-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: PlannerTaskConfiguration, request_configuration: Opti Returns: Optional[PlannerTaskConfiguration] Find more info here: https://learn.microsoft.com/graph/api/plannertaskconfiguration-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: PlannerTaskConfiguration, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> TaskConfigurationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TaskConfigurationRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TaskConfigurationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/count/count_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/count/count_request_builder.py index 984fd1409fa..e86089de7d7 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/assigned_to_task_board_format/assigned_to_task_board_format_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/assigned_to_task_board_format/assigned_to_task_board_format_request_builder.py index 1b4da4eab19..b5dc8c61d40 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/assigned_to_task_board_format/assigned_to_task_board_format_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/assigned_to_task_board_format/assigned_to_task_board_format_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Assigned param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerAssignedToTaskBoardTaskFormat] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: PlannerAssignedToTaskBoardTaskFormat, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerAssignedToTaskBoardTaskFormat] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: PlannerAssignedToTaskBoardTaskFormat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AssignedToTaskBoardFormatRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AssignedToTaskBoardFormatRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AssignedToTaskBoardFormatRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/bucket_task_board_format/bucket_task_board_format_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/bucket_task_board_format/bucket_task_board_format_request_builder.py index 22114d495af..37ad8741b91 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/bucket_task_board_format/bucket_task_board_format_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/bucket_task_board_format/bucket_task_board_format_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BucketTa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerBucketTaskBoardTaskFormat] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: PlannerBucketTaskBoardTaskFormat, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerBucketTaskBoardTaskFormat] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: PlannerBucketTaskBoardTaskFormat, re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> BucketTaskBoardFormatRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BucketTaskBoardFormatRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BucketTaskBoardFormatRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/business_scenario_task_item_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/business_scenario_task_item_request_builder.py index b1d808f402f..d3d467f83f8 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/business_scenario_task_item_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/business_scenario_task_item_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/businessscenarioplanner-delete-tasks?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -62,7 +61,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Business Returns: Optional[BusinessScenarioTask] Find more info here: https://learn.microsoft.com/graph/api/businessscenariotask-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -85,7 +83,6 @@ async def patch(self,body: BusinessScenarioTask, request_configuration: Optional Returns: Optional[BusinessScenarioTask] Find more info here: https://learn.microsoft.com/graph/api/businessscenariotask-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -108,7 +105,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -120,7 +116,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -133,7 +128,6 @@ def to_patch_request_information(self,body: BusinessScenarioTask, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -148,7 +142,6 @@ def with_url(self,raw_url: str) -> BusinessScenarioTaskItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: BusinessScenarioTaskItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BusinessScenarioTaskItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/details/details_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/details/details_request_builder.py index 12f3d463f8d..80bd8e29a0f 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/details/details_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/details/details_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DetailsR param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerTaskDetails] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: PlannerTaskDetails, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerTaskDetails] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: PlannerTaskDetails, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> DetailsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: DetailsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return DetailsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/count/count_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/count/count_request_builder.py index 8a69b4da96a..a9fe5148847 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/planner_task_chat_message_item_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/planner_task_chat_message_item_request_builder.py index 7f5f07774ab..d2f279e6b09 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/planner_task_chat_message_item_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/planner_task_chat_message_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[PlannerT param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerTaskChatMessage] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: PlannerTaskChatMessage, request_configuration: Option param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerTaskChatMessage] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: PlannerTaskChatMessage, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> PlannerTaskChatMessageItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PlannerTaskChatMessageItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PlannerTaskChatMessageItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/set_reaction/set_reaction_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/set_reaction/set_reaction_request_builder.py index 1ed5adca893..845cda2ece5 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/set_reaction/set_reaction_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/set_reaction/set_reaction_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: SetReactionPostRequestBody, request_configuration: Opt Returns: None Find more info here: https://learn.microsoft.com/graph/api/plannertaskchatmessage-setreaction?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: SetReactionPostRequestBody, request_c param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> SetReactionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SetReactionRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SetReactionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/unset_reaction/unset_reaction_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/unset_reaction/unset_reaction_request_builder.py index e586abefae8..ce560646f8b 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/unset_reaction/unset_reaction_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/item/unset_reaction/unset_reaction_request_builder.py @@ -38,7 +38,6 @@ async def post(self,body: UnsetReactionPostRequestBody, request_configuration: O Returns: None Find more info here: https://learn.microsoft.com/graph/api/plannertaskchatmessage-unsetreaction?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -60,7 +59,6 @@ def to_post_request_information(self,body: UnsetReactionPostRequestBody, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> UnsetReactionRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UnsetReactionRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UnsetReactionRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/messages_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/messages_request_builder.py index cd05b8bfd24..e3c0be18b58 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/messages_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/messages/messages_request_builder.py @@ -39,7 +39,6 @@ def by_planner_task_chat_message_id(self,planner_task_chat_message_id: str) -> P param planner_task_chat_message_id: The unique identifier of plannerTaskChatMessage Returns: PlannerTaskChatMessageItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if planner_task_chat_message_id is None: raise TypeError("planner_task_chat_message_id cannot be null.") from .item.planner_task_chat_message_item_request_builder import PlannerTaskChatMessageItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Messages param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerTaskChatMessageCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: PlannerTaskChatMessage, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerTaskChatMessage] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: PlannerTaskChatMessage, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> MessagesRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MessagesRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MessagesRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/progress_task_board_format/progress_task_board_format_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/progress_task_board_format/progress_task_board_format_request_builder.py index 3bfd56fb2d9..4fbc064737a 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/progress_task_board_format/progress_task_board_format_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/item/progress_task_board_format/progress_task_board_format_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Progress param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerProgressTaskBoardTaskFormat] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: PlannerProgressTaskBoardTaskFormat, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[PlannerProgressTaskBoardTaskFormat] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: PlannerProgressTaskBoardTaskFormat, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> ProgressTaskBoardFormatRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ProgressTaskBoardFormatRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ProgressTaskBoardFormatRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/tasks_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/tasks_request_builder.py index 678faa8693f..c0e0c10169f 100644 --- a/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/tasks_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios/item/planner/tasks/tasks_request_builder.py @@ -39,7 +39,6 @@ def by_business_scenario_task_id(self,business_scenario_task_id: str) -> Busines param business_scenario_task_id: The unique identifier of businessScenarioTask Returns: BusinessScenarioTaskItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if business_scenario_task_id is None: raise TypeError("business_scenario_task_id cannot be null.") from .item.business_scenario_task_item_request_builder import BusinessScenarioTaskItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[TasksReq Returns: Optional[BusinessScenarioTaskCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/businessscenarioplanner-list-tasks?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: BusinessScenarioTask, request_configuration: Optional[ Returns: Optional[BusinessScenarioTask] Find more info here: https://learn.microsoft.com/graph/api/businessscenarioplanner-post-tasks?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: BusinessScenarioTask, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> TasksRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TasksRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TasksRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/business_scenarios_with_unique_name/business_scenarios_with_unique_name_request_builder.py b/msgraph_beta/generated/solutions/business_scenarios_with_unique_name/business_scenarios_with_unique_name_request_builder.py index 94c4c81e080..12ea7a97189 100644 --- a/msgraph_beta/generated/solutions/business_scenarios_with_unique_name/business_scenarios_with_unique_name_request_builder.py +++ b/msgraph_beta/generated/solutions/business_scenarios_with_unique_name/business_scenarios_with_unique_name_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/businessscenario-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Business Returns: Optional[BusinessScenario] Find more info here: https://learn.microsoft.com/graph/api/businessscenario-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: BusinessScenario, request_configuration: Optional[Req Returns: Optional[BusinessScenario] Find more info here: https://learn.microsoft.com/graph/api/businessscenario-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +114,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_patch_request_information(self,body: BusinessScenario, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +140,6 @@ def with_url(self,raw_url: str) -> BusinessScenariosWithUniqueNameRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: BusinessScenariosWithUniqueNameRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return BusinessScenariosWithUniqueNameRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/count/count_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/count/count_request_builder.py index f35cfdd2789..51e6d6bd2d8 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/count/count_request_builder.py @@ -35,7 +35,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +54,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +66,7 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/cross_tenant_migration_jobs_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/cross_tenant_migration_jobs_request_builder.py index 2fa910fb5df..361991d71e2 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/cross_tenant_migration_jobs_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/cross_tenant_migration_jobs_request_builder.py @@ -39,7 +39,7 @@ def by_cross_tenant_migration_job_id(self,cross_tenant_migration_job_id: str) -> param cross_tenant_migration_job_id: The unique identifier of crossTenantMigrationJob Returns: CrossTenantMigrationJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if cross_tenant_migration_job_id is None: raise TypeError("cross_tenant_migration_job_id cannot be null.") from .item.cross_tenant_migration_job_item_request_builder import CrossTenantMigrationJobItemRequestBuilder @@ -55,7 +55,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CrossTen Returns: Optional[CrossTenantMigrationJobCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/migrationsroot-list-crosstenantmigrationjobs?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +78,7 @@ async def post(self,body: CrossTenantMigrationJob, request_configuration: Option Returns: Optional[CrossTenantMigrationJob] Find more info here: https://learn.microsoft.com/graph/api/migrationsroot-post-crosstenantmigrationjobs?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +101,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +114,7 @@ def to_post_request_information(self,body: CrossTenantMigrationJob, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +129,7 @@ def with_url(self,raw_url: str) -> CrossTenantMigrationJobsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CrossTenantMigrationJobsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CrossTenantMigrationJobsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/cancel/cancel_request_builder.py index cec066019e7..76642c775e3 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/cancel/cancel_request_builder.py @@ -37,7 +37,7 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CrossTenantMigrationCancelResponse] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-cancel?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +58,7 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +70,7 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/cross_tenant_migration_job_item_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/cross_tenant_migration_job_item_request_builder.py index d5f40966656..ca448ce97b7 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/cross_tenant_migration_job_item_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/cross_tenant_migration_job_item_request_builder.py @@ -40,7 +40,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +60,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CrossTen Returns: Optional[CrossTenantMigrationJob] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +83,7 @@ async def patch(self,body: CrossTenantMigrationJob, request_configuration: Optio Returns: Optional[CrossTenantMigrationJob] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +106,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -118,7 +118,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +131,7 @@ def to_patch_request_information(self,body: CrossTenantMigrationJob, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -146,7 +146,7 @@ def with_url(self,raw_url: str) -> CrossTenantMigrationJobItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CrossTenantMigrationJobItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CrossTenantMigrationJobItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/migrate/migrate_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/migrate/migrate_request_builder.py index 0dd674430b8..5978b5f6b19 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/migrate/migrate_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/migrate/migrate_request_builder.py @@ -37,7 +37,7 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CrossTenantMigrationJob] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-migrate?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +58,7 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +70,7 @@ def with_url(self,raw_url: str) -> MigrateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MigrateRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MigrateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/count/count_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/count/count_request_builder.py index ff581c38985..4106cf877c0 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/count/count_request_builder.py @@ -35,7 +35,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +54,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +66,7 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/item/cancel/cancel_request_builder.py index fdcfd9b8ae8..96f7162082a 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/item/cancel/cancel_request_builder.py @@ -37,7 +37,7 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CrossTenantMigrationCancelResponse] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationtask-cancel?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +58,7 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +70,7 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/item/cross_tenant_migration_task_item_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/item/cross_tenant_migration_task_item_request_builder.py index 839c5629624..2b9df941a18 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/item/cross_tenant_migration_task_item_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/item/cross_tenant_migration_task_item_request_builder.py @@ -37,7 +37,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +57,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CrossTen Returns: Optional[CrossTenantMigrationTask] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationtask-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +79,7 @@ async def patch(self,body: CrossTenantMigrationTask, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CrossTenantMigrationTask] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +102,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +114,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +127,7 @@ def to_patch_request_information(self,body: CrossTenantMigrationTask, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +142,7 @@ def with_url(self,raw_url: str) -> CrossTenantMigrationTaskItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CrossTenantMigrationTaskItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CrossTenantMigrationTaskItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/users_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/users_request_builder.py index ce005a88eb3..248d119e8ed 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/users_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/users/users_request_builder.py @@ -39,7 +39,7 @@ def by_cross_tenant_migration_task_id(self,cross_tenant_migration_task_id: str) param cross_tenant_migration_task_id: The unique identifier of crossTenantMigrationTask Returns: CrossTenantMigrationTaskItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if cross_tenant_migration_task_id is None: raise TypeError("cross_tenant_migration_task_id cannot be null.") from .item.cross_tenant_migration_task_item_request_builder import CrossTenantMigrationTaskItemRequestBuilder @@ -55,7 +55,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UsersReq Returns: Optional[CrossTenantMigrationTaskCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-list-users?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +77,7 @@ async def post(self,body: CrossTenantMigrationTask, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[CrossTenantMigrationTask] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +100,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +113,7 @@ def to_post_request_information(self,body: CrossTenantMigrationTask, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +128,7 @@ def with_url(self,raw_url: str) -> UsersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: UsersRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return UsersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/validate/validate_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/validate/validate_request_builder.py index b39e3065fad..c50182a4abb 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/validate/validate_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs/item/validate/validate_request_builder.py @@ -37,7 +37,7 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CrossTenantMigrationJob] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-validate?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +58,7 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +70,7 @@ def with_url(self,raw_url: str) -> ValidateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ValidateRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ValidateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/cancel/cancel_request_builder.py index f8e054685f5..3dd8d81f831 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/cancel/cancel_request_builder.py @@ -37,7 +37,7 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CrossTenantMigrationCancelResponse] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-cancel?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +58,7 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +70,7 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/cross_tenant_migration_jobs_with_display_name_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/cross_tenant_migration_jobs_with_display_name_request_builder.py index d36d62d44e3..e8be8ad29cf 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/cross_tenant_migration_jobs_with_display_name_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/cross_tenant_migration_jobs_with_display_name_request_builder.py @@ -42,7 +42,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -62,7 +62,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CrossTen Returns: Optional[CrossTenantMigrationJob] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -85,7 +85,7 @@ async def patch(self,body: CrossTenantMigrationJob, request_configuration: Optio Returns: Optional[CrossTenantMigrationJob] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -108,7 +108,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -120,7 +120,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -133,7 +133,7 @@ def to_patch_request_information(self,body: CrossTenantMigrationJob, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -148,7 +148,7 @@ def with_url(self,raw_url: str) -> CrossTenantMigrationJobsWithDisplayNameReques param raw_url: The raw URL to use for the request builder. Returns: CrossTenantMigrationJobsWithDisplayNameRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CrossTenantMigrationJobsWithDisplayNameRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/migrate/migrate_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/migrate/migrate_request_builder.py index e62fcb3dbac..fb311552093 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/migrate/migrate_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/migrate/migrate_request_builder.py @@ -37,7 +37,7 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CrossTenantMigrationJob] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-migrate?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +58,7 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +70,7 @@ def with_url(self,raw_url: str) -> MigrateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MigrateRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MigrateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/validate/validate_request_builder.py b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/validate/validate_request_builder.py index 106fb075ffe..563e4092de3 100644 --- a/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/validate/validate_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/cross_tenant_migration_jobs_with_display_name/validate/validate_request_builder.py @@ -37,7 +37,7 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: Optional[CrossTenantMigrationJob] Find more info here: https://learn.microsoft.com/graph/api/crosstenantmigrationjob-validate?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -58,7 +58,7 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -70,7 +70,7 @@ def with_url(self,raw_url: str) -> ValidateRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: ValidateRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return ValidateRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/migrations/migrations_request_builder.py b/msgraph_beta/generated/solutions/migrations/migrations_request_builder.py index 8a40fec9f60..e1d33541634 100644 --- a/msgraph_beta/generated/solutions/migrations/migrations_request_builder.py +++ b/msgraph_beta/generated/solutions/migrations/migrations_request_builder.py @@ -38,7 +38,7 @@ def cross_tenant_migration_jobs_with_display_name(self,display_name: str) -> Cro param display_name: Alternate key of crossTenantMigrationJob Returns: CrossTenantMigrationJobsWithDisplayNameRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if display_name is None: raise TypeError("display_name cannot be null.") from .cross_tenant_migration_jobs_with_display_name.cross_tenant_migration_jobs_with_display_name_request_builder import CrossTenantMigrationJobsWithDisplayNameRequestBuilder @@ -51,7 +51,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -70,7 +70,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Migratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MigrationsRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -92,7 +92,7 @@ async def patch(self,body: MigrationsRoot, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MigrationsRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -115,7 +115,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +127,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -140,7 +140,7 @@ def to_patch_request_information(self,body: MigrationsRoot, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -155,7 +155,7 @@ def with_url(self,raw_url: str) -> MigrationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MigrationsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) + warn(" as of 2023-11/PrivatePreview:CrossTenantContentMigrationAPI on 2023-11-15 and will be removed 2026-07-09", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MigrationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/count/count_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/count/count_request_builder.py index ad898b92b80..9da964e5033 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/cross_organization_group_mappings_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/cross_organization_group_mappings_request_builder.py index 33b2a14bc74..baa9828ec3e 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/cross_organization_group_mappings_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/cross_organization_group_mappings_request_builder.py @@ -39,7 +39,6 @@ def by_share_point_group_identity_mapping_id(self,share_point_group_identity_map param share_point_group_identity_mapping_id: The unique identifier of sharePointGroupIdentityMapping Returns: SharePointGroupIdentityMappingItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if share_point_group_identity_mapping_id is None: raise TypeError("share_point_group_identity_mapping_id cannot be null.") from .item.share_point_group_identity_mapping_item_request_builder import SharePointGroupIdentityMappingItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CrossOrg Returns: Optional[SharePointGroupIdentityMappingCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/sharepointgroupidentitymapping-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: SharePointGroupIdentityMapping, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointGroupIdentityMapping] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: SharePointGroupIdentityMapping, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> CrossOrganizationGroupMappingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CrossOrganizationGroupMappingsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CrossOrganizationGroupMappingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/item/share_point_group_identity_mapping_item_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/item/share_point_group_identity_mapping_item_request_builder.py index edbf56090ec..db9369f0cf5 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/item/share_point_group_identity_mapping_item_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_group_mappings/item/share_point_group_identity_mapping_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharePoi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointGroupIdentityMapping] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: SharePointGroupIdentityMapping, request_configuration Returns: Optional[SharePointGroupIdentityMapping] Find more info here: https://learn.microsoft.com/graph/api/sharepointgroupidentitymapping-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: SharePointGroupIdentityMapping, requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> SharePointGroupIdentityMappingItemRequestBuil param raw_url: The raw URL to use for the request builder. Returns: SharePointGroupIdentityMappingItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SharePointGroupIdentityMappingItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/count/count_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/count/count_request_builder.py index 7308bf0fbd9..7df609d9e8a 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/cross_organization_migration_tasks_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/cross_organization_migration_tasks_request_builder.py index 62e1b9f9659..e549d4548fc 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/cross_organization_migration_tasks_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/cross_organization_migration_tasks_request_builder.py @@ -42,7 +42,6 @@ def by_share_point_migration_task_id(self,share_point_migration_task_id: str) -> param share_point_migration_task_id: The unique identifier of sharePointMigrationTask Returns: SharePointMigrationTaskItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if share_point_migration_task_id is None: raise TypeError("share_point_migration_task_id cannot be null.") from .item.share_point_migration_task_item_request_builder import SharePointMigrationTaskItemRequestBuilder @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CrossOrg param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointMigrationTaskCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ def get_by_source_group_mail_nickname_with_source_group_mail_nickname(self,sourc param source_group_mail_nickname: Usage: sourceGroupMailNickname='{sourceGroupMailNickname}' Returns: GetBySourceGroupMailNicknameWithSourceGroupMailNicknameRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if source_group_mail_nickname is None: raise TypeError("source_group_mail_nickname cannot be null.") from .get_by_source_group_mail_nickname_with_source_group_mail_nickname.get_by_source_group_mail_nickname_with_source_group_mail_nickname_request_builder import GetBySourceGroupMailNicknameWithSourceGroupMailNicknameRequestBuilder @@ -91,7 +88,6 @@ def get_by_source_site_url_with_source_site_url(self,source_site_url: str) -> Ge param source_site_url: Usage: sourceSiteUrl='{sourceSiteUrl}' Returns: GetBySourceSiteUrlWithSourceSiteUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if source_site_url is None: raise TypeError("source_site_url cannot be null.") from .get_by_source_site_url_with_source_site_url.get_by_source_site_url_with_source_site_url_request_builder import GetBySourceSiteUrlWithSourceSiteUrlRequestBuilder @@ -104,7 +100,6 @@ def get_by_source_user_principal_name_with_source_principal_name(self,source_pri param source_principal_name: Usage: sourcePrincipalName='{sourcePrincipalName}' Returns: GetBySourceUserPrincipalNameWithSourcePrincipalNameRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if source_principal_name is None: raise TypeError("source_principal_name cannot be null.") from .get_by_source_user_principal_name_with_source_principal_name.get_by_source_user_principal_name_with_source_principal_name_request_builder import GetBySourceUserPrincipalNameWithSourcePrincipalNameRequestBuilder @@ -119,7 +114,6 @@ async def post(self,body: SharePointMigrationTask, request_configuration: Option Returns: Optional[SharePointMigrationTask] Find more info here: https://learn.microsoft.com/graph/api/sharepointmigrationtask-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -142,7 +136,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -155,7 +148,6 @@ def to_post_request_information(self,body: SharePointMigrationTask, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -170,7 +162,6 @@ def with_url(self,raw_url: str) -> CrossOrganizationMigrationTasksRequestBuilder param raw_url: The raw URL to use for the request builder. Returns: CrossOrganizationMigrationTasksRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CrossOrganizationMigrationTasksRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_group_mail_nickname_with_source_group_mail_nickname/get_by_source_group_mail_nickname_with_source_group_mail_nickname_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_group_mail_nickname_with_source_group_mail_nickname/get_by_source_group_mail_nickname_with_source_group_mail_nickname_request_builder.py index d7f47d4a373..edbd10ee569 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_group_mail_nickname_with_source_group_mail_nickname/get_by_source_group_mail_nickname_with_source_group_mail_nickname_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_group_mail_nickname_with_source_group_mail_nickname/get_by_source_group_mail_nickname_with_source_group_mail_nickname_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar Returns: Optional[SharePointMigrationTask] Find more info here: https://learn.microsoft.com/graph/api/sharepointmigrationtask-getbysourcegroupmailnickname?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> GetBySourceGroupMailNicknameWithSourceGroupMa param raw_url: The raw URL to use for the request builder. Returns: GetBySourceGroupMailNicknameWithSourceGroupMailNicknameRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetBySourceGroupMailNicknameWithSourceGroupMailNicknameRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_site_url_with_source_site_url/get_by_source_site_url_with_source_site_url_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_site_url_with_source_site_url/get_by_source_site_url_with_source_site_url_request_builder.py index e2bf4ccf54c..5d3b07ab79c 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_site_url_with_source_site_url/get_by_source_site_url_with_source_site_url_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_site_url_with_source_site_url/get_by_source_site_url_with_source_site_url_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar Returns: Optional[SharePointMigrationTask] Find more info here: https://learn.microsoft.com/graph/api/sharepointmigrationtask-getbysourcesiteurl?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> GetBySourceSiteUrlWithSourceSiteUrlRequestBui param raw_url: The raw URL to use for the request builder. Returns: GetBySourceSiteUrlWithSourceSiteUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetBySourceSiteUrlWithSourceSiteUrlRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_user_principal_name_with_source_principal_name/get_by_source_user_principal_name_with_source_principal_name_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_user_principal_name_with_source_principal_name/get_by_source_user_principal_name_with_source_principal_name_request_builder.py index 7eaf85112a9..d7a7952e8c4 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_user_principal_name_with_source_principal_name/get_by_source_user_principal_name_with_source_principal_name_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/get_by_source_user_principal_name_with_source_principal_name/get_by_source_user_principal_name_with_source_principal_name_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[QueryPar Returns: Optional[SharePointMigrationTask] Find more info here: https://learn.microsoft.com/graph/api/sharepointmigrationtask-getbysourceuserprincipalname?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> GetBySourceUserPrincipalNameWithSourcePrincip param raw_url: The raw URL to use for the request builder. Returns: GetBySourceUserPrincipalNameWithSourcePrincipalNameRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetBySourceUserPrincipalNameWithSourcePrincipalNameRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/item/cancel/cancel_request_builder.py index afc6bad9555..4e9b930f29e 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/item/cancel/cancel_request_builder.py @@ -36,7 +36,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa Returns: None Find more info here: https://learn.microsoft.com/graph/api/sharepointmigrationtask-cancel?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -55,7 +54,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -67,7 +65,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/item/share_point_migration_task_item_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/item/share_point_migration_task_item_request_builder.py index 561c34caef0..8cbbd202967 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/item/share_point_migration_task_item_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_migration_tasks/item/share_point_migration_task_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharePoi Returns: Optional[SharePointMigrationTask] Find more info here: https://learn.microsoft.com/graph/api/sharepointmigrationtask-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: SharePointMigrationTask, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointMigrationTask] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: SharePointMigrationTask, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> SharePointMigrationTaskItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SharePointMigrationTaskItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SharePointMigrationTaskItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/count/count_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/count/count_request_builder.py index ec56da77869..00a84e541d1 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/cross_organization_user_mappings_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/cross_organization_user_mappings_request_builder.py index 31b8517e0ff..040e5eaf337 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/cross_organization_user_mappings_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/cross_organization_user_mappings_request_builder.py @@ -39,7 +39,6 @@ def by_share_point_user_identity_mapping_id(self,share_point_user_identity_mappi param share_point_user_identity_mapping_id: The unique identifier of sharePointUserIdentityMapping Returns: SharePointUserIdentityMappingItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if share_point_user_identity_mapping_id is None: raise TypeError("share_point_user_identity_mapping_id cannot be null.") from .item.share_point_user_identity_mapping_item_request_builder import SharePointUserIdentityMappingItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CrossOrg Returns: Optional[SharePointUserIdentityMappingCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/sharepointuseridentitymapping-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: SharePointUserIdentityMapping, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointUserIdentityMapping] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: SharePointUserIdentityMapping, reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> CrossOrganizationUserMappingsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CrossOrganizationUserMappingsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CrossOrganizationUserMappingsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/item/share_point_user_identity_mapping_item_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/item/share_point_user_identity_mapping_item_request_builder.py index 4ce5788950e..321a8a7983a 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/item/share_point_user_identity_mapping_item_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/cross_organization_user_mappings/item/share_point_user_identity_mapping_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharePoi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointUserIdentityMapping] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: SharePointUserIdentityMapping, request_configuration: Returns: Optional[SharePointUserIdentityMapping] Find more info here: https://learn.microsoft.com/graph/api/sharepointuseridentitymapping-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: SharePointUserIdentityMapping, reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> SharePointUserIdentityMappingItemRequestBuild param raw_url: The raw URL to use for the request builder. Returns: SharePointUserIdentityMappingItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SharePointUserIdentityMappingItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/migrations/migrations_request_builder.py b/msgraph_beta/generated/solutions/share_point/migrations/migrations_request_builder.py index 184b06fc71b..f135feb52c4 100644 --- a/msgraph_beta/generated/solutions/share_point/migrations/migrations_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/migrations/migrations_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Migratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointMigrationsRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: SharePointMigrationsRoot, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointMigrationsRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: SharePointMigrationsRoot, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> MigrationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MigrationsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MigrationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/share_point/share_point_request_builder.py b/msgraph_beta/generated/solutions/share_point/share_point_request_builder.py index 0fbe32ab169..12a34a50e84 100644 --- a/msgraph_beta/generated/solutions/share_point/share_point_request_builder.py +++ b/msgraph_beta/generated/solutions/share_point/share_point_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharePoi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: SharePointRoot, request_configuration: Optional[Reque param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SharePointRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: SharePointRoot, request_configuratio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> SharePointRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SharePointRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SharePointRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/solutions_request_builder.py b/msgraph_beta/generated/solutions/solutions_request_builder.py index b45c6fd3d01..6912d519a10 100644 --- a/msgraph_beta/generated/solutions/solutions_request_builder.py +++ b/msgraph_beta/generated/solutions/solutions_request_builder.py @@ -45,7 +45,6 @@ def business_scenarios_with_unique_name(self,unique_name: str) -> BusinessScenar param unique_name: Alternate key of businessScenario Returns: BusinessScenariosWithUniqueNameRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if unique_name is None: raise TypeError("unique_name cannot be null.") from .business_scenarios_with_unique_name.business_scenarios_with_unique_name_request_builder import BusinessScenariosWithUniqueNameRequestBuilder @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Solution param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SolutionsRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: SolutionsRoot, request_configuration: Optional[Reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[SolutionsRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_patch_request_information(self,body: SolutionsRoot, request_configuration param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -131,7 +126,6 @@ def with_url(self,raw_url: str) -> SolutionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SolutionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SolutionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/count/count_request_builder.py index bf0548095e0..a79b6e2c9fa 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/events_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/events_request_builder.py index bc67b2fc4c6..d6717e196d2 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/events_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/events_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_id(self,virtual_event_id: str) -> VirtualEventItemRequestBu param virtual_event_id: The unique identifier of virtualEvent Returns: VirtualEventItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_id is None: raise TypeError("virtual_event_id cannot be null.") from .item.virtual_event_item_request_builder import VirtualEventItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[EventsRe param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: VirtualEvent, request_configuration: Optional[RequestC param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEvent] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: VirtualEvent, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> EventsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: EventsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return EventsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/cancel/cancel_request_builder.py index 6a7897dce2d..9bdd83e9852 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/cancel/cancel_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/count/count_request_builder.py index d1f509599dc..07c56cb0686 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/count/count_request_builder.py index d63f41eb049..25688da298b 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py index 07ba8009f95..8a3ee3eacf9 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/sessions_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/sessions_request_builder.py index f2804418bd6..1694fbf06c6 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions/sessions_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_session_id(self,virtual_event_session_id: str) -> VirtualEv param virtual_event_session_id: The unique identifier of virtualEventSession Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_session_id is None: raise TypeError("virtual_event_session_id cannot be null.") from .item.virtual_event_session_item_request_builder import VirtualEventSessionItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSessionCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> SessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py index 76d31dd742c..1667e7b2681 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> SessionsWithJoinWebUrlRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsWithJoinWebUrlRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/virtual_event_presenter_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/virtual_event_presenter_item_request_builder.py index 5d72c7f462e..01c64074665 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/virtual_event_presenter_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/item/virtual_event_presenter_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenter] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: VirtualEventPresenter, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenter] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def sessions_with_join_web_url(self,join_web_url: str) -> SessionsWithJoinWebUrl param join_web_url: Alternate key of virtualEventSession Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if join_web_url is None: raise TypeError("join_web_url cannot be null.") from .sessions_with_join_web_url.sessions_with_join_web_url_request_builder import SessionsWithJoinWebUrlRequestBuilder @@ -115,7 +111,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -140,7 +134,6 @@ def to_patch_request_information(self,body: VirtualEventPresenter, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -155,7 +148,6 @@ def with_url(self,raw_url: str) -> VirtualEventPresenterItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventPresenterItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/presenters_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/presenters_request_builder.py index d2ab294cad0..849cbc277c5 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/presenters_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/presenters/presenters_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_presenter_id(self,virtual_event_presenter_id: str) -> Virtu param virtual_event_presenter_id: The unique identifier of virtualEventPresenter Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_presenter_id is None: raise TypeError("virtual_event_presenter_id cannot be null.") from .item.virtual_event_presenter_item_request_builder import VirtualEventPresenterItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Presente param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenterCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: VirtualEventPresenter, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenter] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: VirtualEventPresenter, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> PresentersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PresentersRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PresentersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/publish/publish_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/publish/publish_request_builder.py index 47edacfbd91..0cab7de67d3 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/publish/publish_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/publish/publish_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> PublishRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PublishRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PublishRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/count/count_request_builder.py index b8909923858..9c667cfaf62 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/attendance_reports_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/attendance_reports_request_builder.py index b6dd14e811f..90878768117 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/attendance_reports_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/attendance_reports_request_builder.py @@ -39,7 +39,6 @@ def by_meeting_attendance_report_id(self,meeting_attendance_report_id: str) -> M param meeting_attendance_report_id: The unique identifier of meetingAttendanceReport Returns: MeetingAttendanceReportItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if meeting_attendance_report_id is None: raise TypeError("meeting_attendance_report_id cannot be null.") from .item.meeting_attendance_report_item_request_builder import MeetingAttendanceReportItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Attendan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MeetingAttendanceReportCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: MeetingAttendanceReport, request_configuration: Option param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MeetingAttendanceReport] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: MeetingAttendanceReport, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AttendanceReportsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AttendanceReportsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AttendanceReportsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/count/count_request_builder.py index bfa697a6351..77ca8f19589 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py index f24f4f72ea2..24271660a20 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py @@ -39,7 +39,6 @@ def by_attendance_record_id(self,attendance_record_id: str) -> AttendanceRecordI param attendance_record_id: The unique identifier of attendanceRecord Returns: AttendanceRecordItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if attendance_record_id is None: raise TypeError("attendance_record_id cannot be null.") from .item.attendance_record_item_request_builder import AttendanceRecordItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Attendan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecordCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AttendanceRecord, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecord] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AttendanceRecord, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AttendanceRecordsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AttendanceRecordsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AttendanceRecordsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py index 5933699925f..b64d4097077 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py index 5b597867dbe..f355cc56bcd 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Attendan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecord] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AttendanceRecord, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecord] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AttendanceRecord, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AttendanceRecordItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AttendanceRecordItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AttendanceRecordItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py index 4654a3ff5a0..84416354a6d 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MeetingA param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MeetingAttendanceReport] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: MeetingAttendanceReport, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MeetingAttendanceReport] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: MeetingAttendanceReport, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> MeetingAttendanceReportItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MeetingAttendanceReportItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MeetingAttendanceReportItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/count/count_request_builder.py index d7452357e2e..35ead05af32 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py index 9e32f9f6060..c6f39374483 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenter] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventPresenterItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventPresenterItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/presenters_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/presenters_request_builder.py index c4e8745c70e..757a293e756 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/presenters_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/presenters/presenters_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_presenter_id(self,virtual_event_presenter_id: str) -> Virtu param virtual_event_presenter_id: The unique identifier of virtualEventPresenter Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_presenter_id is None: raise TypeError("virtual_event_presenter_id cannot be null.") from .item.virtual_event_presenter_item_request_builder import VirtualEventPresenterItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Presente param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenterCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> PresentersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PresentersRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PresentersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/count/count_request_builder.py index 7fae7ae4ada..5fc51920231 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py index 7bbd77ea4f4..c5a37212225 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventRegistrationItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventRegistrationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventRegistrationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/registrations_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/registrations_request_builder.py index e7fc24a90c7..7758386a273 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/registrations_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations/registrations_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_registration_id(self,virtual_event_registration_id: str) -> param virtual_event_registration_id: The unique identifier of virtualEventRegistration Returns: VirtualEventRegistrationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_registration_id is None: raise TypeError("virtual_event_registration_id cannot be null.") from .item.virtual_event_registration_item_request_builder import VirtualEventRegistrationItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistrationCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> RegistrationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py index 4d39636c172..c3dc83a73c3 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> RegistrationsWithEmailRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsWithEmailRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsWithEmailRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py index 06ec2295384..63fcca50ab3 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> RegistrationsWithUserIdRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsWithUserIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsWithUserIdRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/virtual_event_session_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/virtual_event_session_item_request_builder.py index 35ca496da22..1da4713e8bf 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/virtual_event_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/item/virtual_event_session_item_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: VirtualEventSession, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def registrations_with_email(self,email: str) -> RegistrationsWithEmailRequestBu param email: Alternate key of virtualEventRegistration Returns: RegistrationsWithEmailRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if email is None: raise TypeError("email cannot be null.") from .registrations_with_email.registrations_with_email_request_builder import RegistrationsWithEmailRequestBuilder @@ -118,7 +114,6 @@ def registrations_with_user_id(self,user_id: str) -> RegistrationsWithUserIdRequ param user_id: Alternate key of virtualEventRegistration Returns: RegistrationsWithUserIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if user_id is None: raise TypeError("user_id cannot be null.") from .registrations_with_user_id.registrations_with_user_id_request_builder import RegistrationsWithUserIdRequestBuilder @@ -131,7 +126,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -143,7 +137,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -156,7 +149,6 @@ def to_patch_request_information(self,body: VirtualEventSession, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -171,7 +163,6 @@ def with_url(self,raw_url: str) -> VirtualEventSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/sessions_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/sessions_request_builder.py index a027fd27197..3a4962dfcfc 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions/sessions_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_session_id(self,virtual_event_session_id: str) -> VirtualEv param virtual_event_session_id: The unique identifier of virtualEventSession Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_session_id is None: raise TypeError("virtual_event_session_id cannot be null.") from .item.virtual_event_session_item_request_builder import VirtualEventSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSessionCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: VirtualEventSession, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: VirtualEventSession, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> SessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py index 8a95d029390..9140c8396ff 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: VirtualEventSession, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: VirtualEventSession, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> SessionsWithJoinWebUrlRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsWithJoinWebUrlRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/set_external_event_information/set_external_event_information_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/set_external_event_information/set_external_event_information_request_builder.py index ba9b2f0f7a3..dc831631ac3 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/set_external_event_information/set_external_event_information_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/set_external_event_information/set_external_event_information_request_builder.py @@ -37,7 +37,6 @@ async def post(self,body: SetExternalEventInformationPostRequestBody, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -59,7 +58,6 @@ def to_post_request_information(self,body: SetExternalEventInformationPostReques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -74,7 +72,6 @@ def with_url(self,raw_url: str) -> SetExternalEventInformationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SetExternalEventInformationRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SetExternalEventInformationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/events/item/virtual_event_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/events/item/virtual_event_item_request_builder.py index b5b171ef430..eee200b5ffc 100644 --- a/msgraph_beta/generated/solutions/virtual_events/events/item/virtual_event_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/events/item/virtual_event_item_request_builder.py @@ -42,7 +42,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEvent] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: VirtualEvent, request_configuration: Optional[Request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEvent] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def sessions_with_join_web_url(self,join_web_url: str) -> SessionsWithJoinWebUrl param join_web_url: Alternate key of virtualEventSession Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if join_web_url is None: raise TypeError("join_web_url cannot be null.") from .sessions_with_join_web_url.sessions_with_join_web_url_request_builder import SessionsWithJoinWebUrlRequestBuilder @@ -119,7 +115,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -131,7 +126,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -144,7 +138,6 @@ def to_patch_request_information(self,body: VirtualEvent, request_configuration: param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -159,7 +152,6 @@ def with_url(self,raw_url: str) -> VirtualEventItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/count/count_request_builder.py index 62244381f84..a98d1655641 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/get_by_user_id_and_role_with_user_id_with_role/get_by_user_id_and_role_with_user_id_with_role_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/get_by_user_id_and_role_with_user_id_with_role/get_by_user_id_and_role_with_user_id_with_role_request_builder.py index c5b96463c47..5d3d916335d 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/get_by_user_id_and_role_with_user_id_with_role/get_by_user_id_and_role_with_user_id_with_role_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/get_by_user_id_and_role_with_user_id_with_role/get_by_user_id_and_role_with_user_id_with_role_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GetByUse Returns: Optional[GetByUserIdAndRoleWithUserIdWithRoleGetResponse] Find more info here: https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuseridandrole?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> GetByUserIdAndRoleWithUserIdWithRoleRequestBu param raw_url: The raw URL to use for the request builder. Returns: GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/get_by_user_role_with_role/get_by_user_role_with_role_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/get_by_user_role_with_role/get_by_user_role_with_role_request_builder.py index 9495f073af4..7d3f1992747 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/get_by_user_role_with_role/get_by_user_role_with_role_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/get_by_user_role_with_role/get_by_user_role_with_role_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GetByUse Returns: Optional[GetByUserRoleWithRoleGetResponse] Find more info here: https://learn.microsoft.com/graph/api/virtualeventtownhall-getbyuserrole?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> GetByUserRoleWithRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GetByUserRoleWithRoleRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetByUserRoleWithRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/count/count_request_builder.py index b5db3cddcc8..d99cf6d12ce 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/count/count_request_builder.py index e18e74f890f..0084c730839 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py index 517cd43aa5c..b690301afb7 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/sessions_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/sessions_request_builder.py index f8b2ed128c2..bd8410559f0 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions/sessions_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_session_id(self,virtual_event_session_id: str) -> VirtualEv param virtual_event_session_id: The unique identifier of virtualEventSession Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_session_id is None: raise TypeError("virtual_event_session_id cannot be null.") from .item.virtual_event_session_item_request_builder import VirtualEventSessionItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSessionCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> SessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py index 1d581e74c20..fec7af003c1 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> SessionsWithJoinWebUrlRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsWithJoinWebUrlRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/virtual_event_presenter_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/virtual_event_presenter_item_request_builder.py index 5f675270b70..a50311164db 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/virtual_event_presenter_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/item/virtual_event_presenter_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/virtualeventpresenter-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE Returns: Optional[VirtualEventPresenter] Find more info here: https://learn.microsoft.com/graph/api/virtualeventpresenter-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: VirtualEventPresenter, request_configuration: Optiona param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenter] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def sessions_with_join_web_url(self,join_web_url: str) -> SessionsWithJoinWebUrl param join_web_url: Alternate key of virtualEventSession Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if join_web_url is None: raise TypeError("join_web_url cannot be null.") from .sessions_with_join_web_url.sessions_with_join_web_url_request_builder import SessionsWithJoinWebUrlRequestBuilder @@ -117,7 +113,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -142,7 +136,6 @@ def to_patch_request_information(self,body: VirtualEventPresenter, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -157,7 +150,6 @@ def with_url(self,raw_url: str) -> VirtualEventPresenterItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventPresenterItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/presenters_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/presenters_request_builder.py index 2d651860617..bfea156c9e7 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/presenters_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/presenters/presenters_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_presenter_id(self,virtual_event_presenter_id: str) -> Virtu param virtual_event_presenter_id: The unique identifier of virtualEventPresenter Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_presenter_id is None: raise TypeError("virtual_event_presenter_id cannot be null.") from .item.virtual_event_presenter_item_request_builder import VirtualEventPresenterItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Presente Returns: Optional[VirtualEventPresenterCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/virtualevent-list-presenters?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: VirtualEventPresenter, request_configuration: Optional Returns: Optional[VirtualEventPresenter] Find more info here: https://learn.microsoft.com/graph/api/virtualevent-post-presenters?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: VirtualEventPresenter, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> PresentersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PresentersRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PresentersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/count/count_request_builder.py index ceed1770c41..941d6e1798a 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/item/virtual_event_registration_question_base_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/item/virtual_event_registration_question_base_item_request_builder.py index 808afadd43e..8c31bcf438e 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/item/virtual_event_registration_question_base_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/item/virtual_event_registration_question_base_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistrationQuestionBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: VirtualEventRegistrationQuestionBase, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistrationQuestionBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: VirtualEventRegistrationQuestionBase param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> VirtualEventRegistrationQuestionBaseItemReque param raw_url: The raw URL to use for the request builder. Returns: VirtualEventRegistrationQuestionBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventRegistrationQuestionBaseItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/questions_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/questions_request_builder.py index 149aa2bded6..8b9795c6a8a 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/questions_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/questions/questions_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_registration_question_base_id(self,virtual_event_registrati param virtual_event_registration_question_base_id: The unique identifier of virtualEventRegistrationQuestionBase Returns: VirtualEventRegistrationQuestionBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_registration_question_base_id is None: raise TypeError("virtual_event_registration_question_base_id cannot be null.") from .item.virtual_event_registration_question_base_item_request_builder import VirtualEventRegistrationQuestionBaseItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Question param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistrationQuestionBaseCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: VirtualEventRegistrationQuestionBase, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistrationQuestionBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: VirtualEventRegistrationQuestionBase, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> QuestionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: QuestionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return QuestionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/registration_configuration_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/registration_configuration_request_builder.py index 725871556b7..9154ec9ce97 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/registration_configuration_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registration_configuration/registration_configuration_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra Returns: Optional[VirtualEventTownhallRegistrationConfiguration] Find more info here: https://learn.microsoft.com/graph/api/virtualeventtownhallregistrationconfiguration-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: VirtualEventTownhallRegistrationConfiguration, reques param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventTownhallRegistrationConfiguration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: VirtualEventTownhallRegistrationConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> RegistrationConfigurationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationConfigurationRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationConfigurationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/count/count_request_builder.py index 412979067b3..d4537e630ca 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/cancel/cancel_request_builder.py index 94ee3078899..0ea5d09c633 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/cancel/cancel_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/count/count_request_builder.py index edde228b07c..67bee03bbed 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/item/virtual_event_session_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/item/virtual_event_session_item_request_builder.py index ca3fd96420a..0fe3a858b6d 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/item/virtual_event_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/item/virtual_event_session_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/sessions_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/sessions_request_builder.py index da2e1f39e89..dc68b5060bd 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions/sessions_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_session_id(self,virtual_event_session_id: str) -> VirtualEv param virtual_event_session_id: The unique identifier of virtualEventSession Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_session_id is None: raise TypeError("virtual_event_session_id cannot be null.") from .item.virtual_event_session_item_request_builder import VirtualEventSessionItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSessionCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> SessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py index bbafc2853e1..f6fc6e95e57 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> SessionsWithJoinWebUrlRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsWithJoinWebUrlRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/virtual_event_registration_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/virtual_event_registration_item_request_builder.py index 39ca3fdebd1..61f19a01477 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/virtual_event_registration_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/item/virtual_event_registration_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: VirtualEventRegistration, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def sessions_with_join_web_url(self,join_web_url: str) -> SessionsWithJoinWebUrl param join_web_url: Alternate key of virtualEventSession Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if join_web_url is None: raise TypeError("join_web_url cannot be null.") from .sessions_with_join_web_url.sessions_with_join_web_url_request_builder import SessionsWithJoinWebUrlRequestBuilder @@ -116,7 +112,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -141,7 +135,6 @@ def to_patch_request_information(self,body: VirtualEventRegistration, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -156,7 +149,6 @@ def with_url(self,raw_url: str) -> VirtualEventRegistrationItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventRegistrationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventRegistrationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/registrations_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/registrations_request_builder.py index 670cbf75ce3..8109640022b 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/registrations_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations/registrations_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_registration_id(self,virtual_event_registration_id: str) -> param virtual_event_registration_id: The unique identifier of virtualEventRegistration Returns: VirtualEventRegistrationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_registration_id is None: raise TypeError("virtual_event_registration_id cannot be null.") from .item.virtual_event_registration_item_request_builder import VirtualEventRegistrationItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistrationCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: VirtualEventRegistration, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: VirtualEventRegistration, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> RegistrationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_email/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_email/cancel/cancel_request_builder.py index 9d4d027332f..72506ce05cf 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_email/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_email/cancel/cancel_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_email/registrations_with_email_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_email/registrations_with_email_request_builder.py index 32f6e327013..ce8337bf6bc 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_email/registrations_with_email_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_email/registrations_with_email_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: VirtualEventRegistration, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: VirtualEventRegistration, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> RegistrationsWithEmailRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsWithEmailRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsWithEmailRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_user_id/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_user_id/cancel/cancel_request_builder.py index 0973af6534a..9d622aeca2d 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_user_id/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_user_id/cancel/cancel_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_user_id/registrations_with_user_id_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_user_id/registrations_with_user_id_request_builder.py index 28cb800b77d..78ae83707c1 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_user_id/registrations_with_user_id_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/registrations_with_user_id/registrations_with_user_id_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: VirtualEventRegistration, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: VirtualEventRegistration, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> RegistrationsWithUserIdRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsWithUserIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsWithUserIdRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/count/count_request_builder.py index fbe51a28b06..4c1b67a6805 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/attendance_reports_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/attendance_reports_request_builder.py index 058392ffe6a..e9be8591663 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/attendance_reports_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/attendance_reports_request_builder.py @@ -39,7 +39,6 @@ def by_meeting_attendance_report_id(self,meeting_attendance_report_id: str) -> M param meeting_attendance_report_id: The unique identifier of meetingAttendanceReport Returns: MeetingAttendanceReportItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if meeting_attendance_report_id is None: raise TypeError("meeting_attendance_report_id cannot be null.") from .item.meeting_attendance_report_item_request_builder import MeetingAttendanceReportItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Attendan Returns: Optional[MeetingAttendanceReportCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: MeetingAttendanceReport, request_configuration: Option param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MeetingAttendanceReport] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: MeetingAttendanceReport, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> AttendanceReportsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AttendanceReportsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AttendanceReportsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/count/count_request_builder.py index bb0fa02f9df..2e2637117f0 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py index a177241535c..1f749594b13 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py @@ -39,7 +39,6 @@ def by_attendance_record_id(self,attendance_record_id: str) -> AttendanceRecordI param attendance_record_id: The unique identifier of attendanceRecord Returns: AttendanceRecordItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if attendance_record_id is None: raise TypeError("attendance_record_id cannot be null.") from .item.attendance_record_item_request_builder import AttendanceRecordItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Attendan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecordCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AttendanceRecord, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecord] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AttendanceRecord, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AttendanceRecordsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AttendanceRecordsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AttendanceRecordsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py index 76ca3f9a916..59101de51b1 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py index ce43ae4bb7d..7689f914f41 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Attendan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecord] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AttendanceRecord, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecord] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AttendanceRecord, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AttendanceRecordItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AttendanceRecordItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AttendanceRecordItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py index 40c4879d52b..51b01e0501e 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MeetingA Returns: Optional[MeetingAttendanceReport] Find more info here: https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: MeetingAttendanceReport, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MeetingAttendanceReport] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: MeetingAttendanceReport, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> MeetingAttendanceReportItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MeetingAttendanceReportItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MeetingAttendanceReportItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/count/count_request_builder.py index d32e53df71f..f9f03276667 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py index 8a2cd351f44..becb1469b2f 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenter] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventPresenterItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventPresenterItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/presenters_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/presenters_request_builder.py index 169f0426ad6..31b3db7c214 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/presenters_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/presenters/presenters_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_presenter_id(self,virtual_event_presenter_id: str) -> Virtu param virtual_event_presenter_id: The unique identifier of virtualEventPresenter Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_presenter_id is None: raise TypeError("virtual_event_presenter_id cannot be null.") from .item.virtual_event_presenter_item_request_builder import VirtualEventPresenterItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Presente param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenterCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> PresentersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PresentersRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PresentersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/count/count_request_builder.py index 3758a1756de..36bbc378fcd 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py index 46b0f8b1eac..a78994d817d 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventRegistrationItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventRegistrationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventRegistrationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/registrations_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/registrations_request_builder.py index c6cffe630ba..244fb44fbe6 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/registrations_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations/registrations_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_registration_id(self,virtual_event_registration_id: str) -> param virtual_event_registration_id: The unique identifier of virtualEventRegistration Returns: VirtualEventRegistrationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_registration_id is None: raise TypeError("virtual_event_registration_id cannot be null.") from .item.virtual_event_registration_item_request_builder import VirtualEventRegistrationItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistrationCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> RegistrationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py index a1f4305e43a..4b9073a0868 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> RegistrationsWithEmailRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsWithEmailRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsWithEmailRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py index 50aac695d10..1f7fbe36200 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> RegistrationsWithUserIdRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsWithUserIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsWithUserIdRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/virtual_event_session_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/virtual_event_session_item_request_builder.py index 7fe90e1a027..4eefa2e5762 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/virtual_event_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/item/virtual_event_session_item_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: VirtualEventSession, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def registrations_with_email(self,email: str) -> RegistrationsWithEmailRequestBu param email: Alternate key of virtualEventRegistration Returns: RegistrationsWithEmailRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if email is None: raise TypeError("email cannot be null.") from .registrations_with_email.registrations_with_email_request_builder import RegistrationsWithEmailRequestBuilder @@ -118,7 +114,6 @@ def registrations_with_user_id(self,user_id: str) -> RegistrationsWithUserIdRequ param user_id: Alternate key of virtualEventRegistration Returns: RegistrationsWithUserIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if user_id is None: raise TypeError("user_id cannot be null.") from .registrations_with_user_id.registrations_with_user_id_request_builder import RegistrationsWithUserIdRequestBuilder @@ -131,7 +126,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -143,7 +137,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -156,7 +149,6 @@ def to_patch_request_information(self,body: VirtualEventSession, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -171,7 +163,6 @@ def with_url(self,raw_url: str) -> VirtualEventSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/sessions_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/sessions_request_builder.py index 05468e936ee..c70c963258a 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions/sessions_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_session_id(self,virtual_event_session_id: str) -> VirtualEv param virtual_event_session_id: The unique identifier of virtualEventSession Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_session_id is None: raise TypeError("virtual_event_session_id cannot be null.") from .item.virtual_event_session_item_request_builder import VirtualEventSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSessionCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: VirtualEventSession, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: VirtualEventSession, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> SessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py index 7f1dce57972..282acdd8f9b 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: VirtualEventSession, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: VirtualEventSession, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> SessionsWithJoinWebUrlRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsWithJoinWebUrlRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/virtual_event_townhall_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/virtual_event_townhall_item_request_builder.py index 77be020ea80..ab42ce3fadb 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/item/virtual_event_townhall_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/item/virtual_event_townhall_item_request_builder.py @@ -43,7 +43,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -63,7 +62,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE Returns: Optional[VirtualEventTownhall] Find more info here: https://learn.microsoft.com/graph/api/virtualeventtownhall-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -86,7 +84,6 @@ async def patch(self,body: VirtualEventTownhall, request_configuration: Optional Returns: Optional[VirtualEventTownhall] Find more info here: https://learn.microsoft.com/graph/api/virtualeventtownhall-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -109,7 +106,6 @@ def registrations_with_email(self,email: str) -> RegistrationsWithEmailRequestBu param email: Alternate key of virtualEventRegistration Returns: RegistrationsWithEmailRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if email is None: raise TypeError("email cannot be null.") from .registrations_with_email.registrations_with_email_request_builder import RegistrationsWithEmailRequestBuilder @@ -122,7 +118,6 @@ def registrations_with_user_id(self,user_id: str) -> RegistrationsWithUserIdRequ param user_id: Alternate key of virtualEventRegistration Returns: RegistrationsWithUserIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if user_id is None: raise TypeError("user_id cannot be null.") from .registrations_with_user_id.registrations_with_user_id_request_builder import RegistrationsWithUserIdRequestBuilder @@ -135,7 +130,6 @@ def sessions_with_join_web_url(self,join_web_url: str) -> SessionsWithJoinWebUrl param join_web_url: Alternate key of virtualEventSession Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if join_web_url is None: raise TypeError("join_web_url cannot be null.") from .sessions_with_join_web_url.sessions_with_join_web_url_request_builder import SessionsWithJoinWebUrlRequestBuilder @@ -148,7 +142,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -160,7 +153,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -173,7 +165,6 @@ def to_patch_request_information(self,body: VirtualEventTownhall, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -188,7 +179,6 @@ def with_url(self,raw_url: str) -> VirtualEventTownhallItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventTownhallItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventTownhallItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/townhalls/townhalls_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/townhalls/townhalls_request_builder.py index 30d099cd106..4d9b498cec7 100644 --- a/msgraph_beta/generated/solutions/virtual_events/townhalls/townhalls_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/townhalls/townhalls_request_builder.py @@ -41,7 +41,6 @@ def by_virtual_event_townhall_id(self,virtual_event_townhall_id: str) -> Virtual param virtual_event_townhall_id: The unique identifier of virtualEventTownhall Returns: VirtualEventTownhallItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_townhall_id is None: raise TypeError("virtual_event_townhall_id cannot be null.") from .item.virtual_event_townhall_item_request_builder import VirtualEventTownhallItemRequestBuilder @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Townhall param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventTownhallCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ def get_by_user_id_and_role_with_user_id_with_role(self,role: str, user_id: str) param user_id: Usage: userId='{userId}' Returns: GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if role is None: raise TypeError("role cannot be null.") if user_id is None: @@ -93,7 +90,6 @@ def get_by_user_role_with_role(self,role: str) -> GetByUserRoleWithRoleRequestBu param role: Usage: role='{role}' Returns: GetByUserRoleWithRoleRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if role is None: raise TypeError("role cannot be null.") from .get_by_user_role_with_role.get_by_user_role_with_role_request_builder import GetByUserRoleWithRoleRequestBuilder @@ -108,7 +104,6 @@ async def post(self,body: VirtualEventTownhall, request_configuration: Optional[ Returns: Optional[VirtualEventTownhall] Find more info here: https://learn.microsoft.com/graph/api/virtualeventsroot-post-townhalls?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -131,7 +126,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -144,7 +138,6 @@ def to_post_request_information(self,body: VirtualEventTownhall, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -159,7 +152,6 @@ def with_url(self,raw_url: str) -> TownhallsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: TownhallsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return TownhallsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/virtual_events_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/virtual_events_request_builder.py index 00d8376e91a..ed6eaf654ea 100644 --- a/msgraph_beta/generated/solutions/virtual_events/virtual_events_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/virtual_events_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -58,7 +57,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventsRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: VirtualEventsRoot, request_configuration: Optional[Re param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventsRoot] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -115,7 +111,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_patch_request_information(self,body: VirtualEventsRoot, request_configura param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -143,7 +137,6 @@ def with_url(self,raw_url: str) -> VirtualEventsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/count/count_request_builder.py index 6925d604a63..34dc139fc10 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/get_by_user_id_and_role_with_user_id_with_role/get_by_user_id_and_role_with_user_id_with_role_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/get_by_user_id_and_role_with_user_id_with_role/get_by_user_id_and_role_with_user_id_with_role_request_builder.py index 9bf487f6bd7..d15ee29cc6a 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/get_by_user_id_and_role_with_user_id_with_role/get_by_user_id_and_role_with_user_id_with_role_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/get_by_user_id_and_role_with_user_id_with_role/get_by_user_id_and_role_with_user_id_with_role_request_builder.py @@ -42,7 +42,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GetByUse Returns: Optional[GetByUserIdAndRoleWithUserIdWithRoleGetResponse] Find more info here: https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -63,7 +62,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -75,7 +73,6 @@ def with_url(self,raw_url: str) -> GetByUserIdAndRoleWithUserIdWithRoleRequestBu param raw_url: The raw URL to use for the request builder. Returns: GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/get_by_user_role_with_role/get_by_user_role_with_role_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/get_by_user_role_with_role/get_by_user_role_with_role_request_builder.py index 7b4b522000a..fb1044518c1 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/get_by_user_role_with_role/get_by_user_role_with_role_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/get_by_user_role_with_role/get_by_user_role_with_role_request_builder.py @@ -40,7 +40,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GetByUse Returns: Optional[GetByUserRoleWithRoleGetResponse] Find more info here: https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -61,7 +60,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -73,7 +71,6 @@ def with_url(self,raw_url: str) -> GetByUserRoleWithRoleRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: GetByUserRoleWithRoleRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return GetByUserRoleWithRoleRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/count/count_request_builder.py index edaaa149ce1..b90dfe97dfd 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/count/count_request_builder.py index 7bc527c9768..5200eccfb1c 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py index ac4d778e906..4343736b755 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/item/virtual_event_session_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/sessions_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/sessions_request_builder.py index df9dc792e18..50cce2e1bd1 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions/sessions_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_session_id(self,virtual_event_session_id: str) -> VirtualEv param virtual_event_session_id: The unique identifier of virtualEventSession Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_session_id is None: raise TypeError("virtual_event_session_id cannot be null.") from .item.virtual_event_session_item_request_builder import VirtualEventSessionItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSessionCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> SessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py index 8228df222e8..616d616ced6 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> SessionsWithJoinWebUrlRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsWithJoinWebUrlRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/virtual_event_presenter_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/virtual_event_presenter_item_request_builder.py index 251ac1468d2..6a260232355 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/virtual_event_presenter_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/item/virtual_event_presenter_item_request_builder.py @@ -38,7 +38,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenter] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -80,7 +78,6 @@ async def patch(self,body: VirtualEventPresenter, request_configuration: Optiona Returns: Optional[VirtualEventPresenter] Find more info here: https://learn.microsoft.com/graph/api/virtualeventpresenter-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -103,7 +100,6 @@ def sessions_with_join_web_url(self,join_web_url: str) -> SessionsWithJoinWebUrl param join_web_url: Alternate key of virtualEventSession Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if join_web_url is None: raise TypeError("join_web_url cannot be null.") from .sessions_with_join_web_url.sessions_with_join_web_url_request_builder import SessionsWithJoinWebUrlRequestBuilder @@ -116,7 +112,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -128,7 +123,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -141,7 +135,6 @@ def to_patch_request_information(self,body: VirtualEventPresenter, request_confi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -156,7 +149,6 @@ def with_url(self,raw_url: str) -> VirtualEventPresenterItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventPresenterItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/presenters_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/presenters_request_builder.py index 167c3fc9a70..a640e5da218 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/presenters_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/presenters/presenters_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_presenter_id(self,virtual_event_presenter_id: str) -> Virtu param virtual_event_presenter_id: The unique identifier of virtualEventPresenter Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_presenter_id is None: raise TypeError("virtual_event_presenter_id cannot be null.") from .item.virtual_event_presenter_item_request_builder import VirtualEventPresenterItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Presente param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenterCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: VirtualEventPresenter, request_configuration: Optional param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenter] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: VirtualEventPresenter, request_config param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> PresentersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PresentersRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PresentersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/count/count_request_builder.py index ea0796a110e..1cc3a2109ae 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/item/virtual_event_registration_question_base_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/item/virtual_event_registration_question_base_item_request_builder.py index fffcc3d9122..00ed3811b0f 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/item/virtual_event_registration_question_base_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/item/virtual_event_registration_question_base_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query Returns: None Find more info here: https://learn.microsoft.com/graph/api/virtualeventregistrationquestionbase-delete?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -56,7 +55,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistrationQuestionBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def patch(self,body: VirtualEventRegistrationQuestionBase, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistrationQuestionBase] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -101,7 +98,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -126,7 +121,6 @@ def to_patch_request_information(self,body: VirtualEventRegistrationQuestionBase param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -141,7 +135,6 @@ def with_url(self,raw_url: str) -> VirtualEventRegistrationQuestionBaseItemReque param raw_url: The raw URL to use for the request builder. Returns: VirtualEventRegistrationQuestionBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventRegistrationQuestionBaseItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/questions_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/questions_request_builder.py index fa94c324188..b51ddd29b31 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/questions_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/questions/questions_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_registration_question_base_id(self,virtual_event_registrati param virtual_event_registration_question_base_id: The unique identifier of virtualEventRegistrationQuestionBase Returns: VirtualEventRegistrationQuestionBaseItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_registration_question_base_id is None: raise TypeError("virtual_event_registration_question_base_id cannot be null.") from .item.virtual_event_registration_question_base_item_request_builder import VirtualEventRegistrationQuestionBaseItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Question Returns: Optional[VirtualEventRegistrationQuestionBaseCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-list-questions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: VirtualEventRegistrationQuestionBase, request_configur Returns: Optional[VirtualEventRegistrationQuestionBase] Find more info here: https://learn.microsoft.com/graph/api/virtualeventregistrationconfiguration-post-questions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: VirtualEventRegistrationQuestionBase, param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> QuestionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: QuestionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return QuestionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/registration_configuration_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/registration_configuration_request_builder.py index 8ae1b0587c5..6c95e1bcbbc 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/registration_configuration_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registration_configuration/registration_configuration_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra Returns: Optional[VirtualEventWebinarRegistrationConfiguration] Find more info here: https://learn.microsoft.com/graph/api/virtualeventwebinarregistrationconfiguration-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: VirtualEventWebinarRegistrationConfiguration, request param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventWebinarRegistrationConfiguration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: VirtualEventWebinarRegistrationConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> RegistrationConfigurationRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationConfigurationRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationConfigurationRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/count/count_request_builder.py index 5fa38730e56..039847b7478 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/cancel/cancel_request_builder.py index 3391e25f818..6e3fa61cafd 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/cancel/cancel_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/count/count_request_builder.py index 752c383a656..9ba8f6ec643 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/item/virtual_event_session_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/item/virtual_event_session_item_request_builder.py index cc27f0b2d33..6ea5ede2362 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/item/virtual_event_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/item/virtual_event_session_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/sessions_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/sessions_request_builder.py index f5b5356c16e..50797a4b844 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions/sessions_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_session_id(self,virtual_event_session_id: str) -> VirtualEv param virtual_event_session_id: The unique identifier of virtualEventSession Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_session_id is None: raise TypeError("virtual_event_session_id cannot be null.") from .item.virtual_event_session_item_request_builder import VirtualEventSessionItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions Returns: Optional[VirtualEventSessionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/virtualeventregistration-list-sessions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -75,7 +73,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -87,7 +84,6 @@ def with_url(self,raw_url: str) -> SessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py index c6480c7b7cf..d54947cb9bb 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> SessionsWithJoinWebUrlRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsWithJoinWebUrlRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/virtual_event_registration_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/virtual_event_registration_item_request_builder.py index 6f4b2fdcef7..5ba93cd0104 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/virtual_event_registration_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/item/virtual_event_registration_item_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE Returns: Optional[VirtualEventRegistration] Find more info here: https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: VirtualEventRegistration, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def sessions_with_join_web_url(self,join_web_url: str) -> SessionsWithJoinWebUrl param join_web_url: Alternate key of virtualEventSession Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if join_web_url is None: raise TypeError("join_web_url cannot be null.") from .sessions_with_join_web_url.sessions_with_join_web_url_request_builder import SessionsWithJoinWebUrlRequestBuilder @@ -117,7 +113,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -142,7 +136,6 @@ def to_patch_request_information(self,body: VirtualEventRegistration, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -157,7 +150,6 @@ def with_url(self,raw_url: str) -> VirtualEventRegistrationItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventRegistrationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventRegistrationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/registrations_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/registrations_request_builder.py index bd81f446992..66609e5be16 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/registrations_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations/registrations_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_registration_id(self,virtual_event_registration_id: str) -> param virtual_event_registration_id: The unique identifier of virtualEventRegistration Returns: VirtualEventRegistrationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_registration_id is None: raise TypeError("virtual_event_registration_id cannot be null.") from .item.virtual_event_registration_item_request_builder import VirtualEventRegistrationItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra Returns: Optional[VirtualEventRegistrationCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/virtualeventregistration-list?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -78,7 +76,6 @@ async def post(self,body: VirtualEventRegistration, request_configuration: Optio Returns: Optional[VirtualEventRegistration] Find more info here: https://learn.microsoft.com/graph/api/virtualeventwebinar-post-registrations?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -101,7 +98,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_post_request_information(self,body: VirtualEventRegistration, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -129,7 +124,6 @@ def with_url(self,raw_url: str) -> RegistrationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_email/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_email/cancel/cancel_request_builder.py index f188bc7fd5f..9f184bc47e7 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_email/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_email/cancel/cancel_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_email/registrations_with_email_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_email/registrations_with_email_request_builder.py index 49ecbb19c0e..6e4a2282156 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_email/registrations_with_email_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_email/registrations_with_email_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra Returns: Optional[VirtualEventRegistration] Find more info here: https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: VirtualEventRegistration, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: VirtualEventRegistration, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> RegistrationsWithEmailRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsWithEmailRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsWithEmailRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_user_id/cancel/cancel_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_user_id/cancel/cancel_request_builder.py index a17ec221af2..43431a7d21d 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_user_id/cancel/cancel_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_user_id/cancel/cancel_request_builder.py @@ -35,7 +35,6 @@ async def post(self,request_configuration: Optional[RequestConfiguration[QueryPa param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_post_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_post_request_information(self,request_configuration: Optional[RequestConf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CancelRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CancelRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CancelRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_user_id/registrations_with_user_id_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_user_id/registrations_with_user_id_request_builder.py index e32d3400f02..da82774fb4e 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_user_id/registrations_with_user_id_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/registrations_with_user_id/registrations_with_user_id_request_builder.py @@ -40,7 +40,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -60,7 +59,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra Returns: Optional[VirtualEventRegistration] Find more info here: https://learn.microsoft.com/graph/api/virtualeventregistration-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -82,7 +80,6 @@ async def patch(self,body: VirtualEventRegistration, request_configuration: Opti param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -105,7 +102,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -117,7 +113,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -130,7 +125,6 @@ def to_patch_request_information(self,body: VirtualEventRegistration, request_co param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -145,7 +139,6 @@ def with_url(self,raw_url: str) -> RegistrationsWithUserIdRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsWithUserIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsWithUserIdRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/count/count_request_builder.py index 9c4094be446..ab8863063fd 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/attendance_reports_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/attendance_reports_request_builder.py index aba9de8f140..fa95b95d06a 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/attendance_reports_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/attendance_reports_request_builder.py @@ -39,7 +39,6 @@ def by_meeting_attendance_report_id(self,meeting_attendance_report_id: str) -> M param meeting_attendance_report_id: The unique identifier of meetingAttendanceReport Returns: MeetingAttendanceReportItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if meeting_attendance_report_id is None: raise TypeError("meeting_attendance_report_id cannot be null.") from .item.meeting_attendance_report_item_request_builder import MeetingAttendanceReportItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Attendan Returns: Optional[MeetingAttendanceReportCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/meetingattendancereport-list?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: MeetingAttendanceReport, request_configuration: Option param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MeetingAttendanceReport] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: MeetingAttendanceReport, request_conf param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> AttendanceReportsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AttendanceReportsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AttendanceReportsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/count/count_request_builder.py index a7d3bfaae73..e8af75cb4fd 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py index 81ce94006e8..cc13aa5c199 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/attendance_records_request_builder.py @@ -39,7 +39,6 @@ def by_attendance_record_id(self,attendance_record_id: str) -> AttendanceRecordI param attendance_record_id: The unique identifier of attendanceRecord Returns: AttendanceRecordItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if attendance_record_id is None: raise TypeError("attendance_record_id cannot be null.") from .item.attendance_record_item_request_builder import AttendanceRecordItemRequestBuilder @@ -54,7 +53,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Attendan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecordCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -76,7 +74,6 @@ async def post(self,body: AttendanceRecord, request_configuration: Optional[Requ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecord] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -99,7 +96,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_post_request_information(self,body: AttendanceRecord, request_configurati param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -127,7 +122,6 @@ def with_url(self,raw_url: str) -> AttendanceRecordsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AttendanceRecordsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AttendanceRecordsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py index 59e81e9537d..807a8a0cbf1 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py index 52c70796cc4..38300be1f4e 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/attendance_records/item/attendance_record_item_request_builder.py @@ -36,7 +36,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Attendan param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecord] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def patch(self,body: AttendanceRecord, request_configuration: Optional[Req param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[AttendanceRecord] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -100,7 +97,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -112,7 +108,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -125,7 +120,6 @@ def to_patch_request_information(self,body: AttendanceRecord, request_configurat param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -140,7 +134,6 @@ def with_url(self,raw_url: str) -> AttendanceRecordItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: AttendanceRecordItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return AttendanceRecordItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py index 9dfceee6223..329272337c6 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/attendance_reports/item/meeting_attendance_report_item_request_builder.py @@ -37,7 +37,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[MeetingA Returns: Optional[MeetingAttendanceReport] Find more info here: https://learn.microsoft.com/graph/api/meetingattendancereport-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ async def patch(self,body: MeetingAttendanceReport, request_configuration: Optio param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[MeetingAttendanceReport] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -102,7 +99,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -114,7 +110,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -127,7 +122,6 @@ def to_patch_request_information(self,body: MeetingAttendanceReport, request_con param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -142,7 +136,6 @@ def with_url(self,raw_url: str) -> MeetingAttendanceReportItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: MeetingAttendanceReportItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return MeetingAttendanceReportItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/count/count_request_builder.py index e53cb4a349d..abd304dfe4c 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py index 2932e50993b..c7ecf84a0ba 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/item/virtual_event_presenter_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenter] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventPresenterItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventPresenterItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/presenters_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/presenters_request_builder.py index 2e2c12e8c54..987b0166f75 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/presenters_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/presenters/presenters_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_presenter_id(self,virtual_event_presenter_id: str) -> Virtu param virtual_event_presenter_id: The unique identifier of virtualEventPresenter Returns: VirtualEventPresenterItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_presenter_id is None: raise TypeError("virtual_event_presenter_id cannot be null.") from .item.virtual_event_presenter_item_request_builder import VirtualEventPresenterItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Presente param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventPresenterCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> PresentersRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: PresentersRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return PresentersRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/count/count_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/count/count_request_builder.py index ee899190ba3..2184418ed5f 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/count/count_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/count/count_request_builder.py @@ -35,7 +35,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[int] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -54,7 +53,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "text/plain;q=0.9") @@ -66,7 +64,6 @@ def with_url(self,raw_url: str) -> CountRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: CountRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return CountRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py index 695fe5df753..957c2854709 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/item/virtual_event_registration_item_request_builder.py @@ -36,7 +36,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -57,7 +56,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -69,7 +67,6 @@ def with_url(self,raw_url: str) -> VirtualEventRegistrationItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventRegistrationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventRegistrationItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/registrations_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/registrations_request_builder.py index b03dd42777f..70fe6f2047d 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/registrations_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations/registrations_request_builder.py @@ -38,7 +38,6 @@ def by_virtual_event_registration_id(self,virtual_event_registration_id: str) -> param virtual_event_registration_id: The unique identifier of virtualEventRegistration Returns: VirtualEventRegistrationItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_registration_id is None: raise TypeError("virtual_event_registration_id cannot be null.") from .item.virtual_event_registration_item_request_builder import VirtualEventRegistrationItemRequestBuilder @@ -53,7 +52,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistrationCollectionResponse] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -74,7 +72,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -86,7 +83,6 @@ def with_url(self,raw_url: str) -> RegistrationsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py index 698e1fef570..30e86def759 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations_with_email/registrations_with_email_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> RegistrationsWithEmailRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsWithEmailRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsWithEmailRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py index b47c4f5b0ee..9de4e0e2359 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/registrations_with_user_id/registrations_with_user_id_request_builder.py @@ -39,7 +39,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Registra param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventRegistration] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -60,7 +59,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -72,7 +70,6 @@ def with_url(self,raw_url: str) -> RegistrationsWithUserIdRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: RegistrationsWithUserIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return RegistrationsWithUserIdRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/virtual_event_session_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/virtual_event_session_item_request_builder.py index ec3f9c2e37d..af33524fe11 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/virtual_event_session_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/item/virtual_event_session_item_request_builder.py @@ -41,7 +41,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -61,7 +60,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE Returns: Optional[VirtualEventSession] Find more info here: https://learn.microsoft.com/graph/api/virtualeventsession-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -83,7 +81,6 @@ async def patch(self,body: VirtualEventSession, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -106,7 +103,6 @@ def registrations_with_email(self,email: str) -> RegistrationsWithEmailRequestBu param email: Alternate key of virtualEventRegistration Returns: RegistrationsWithEmailRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if email is None: raise TypeError("email cannot be null.") from .registrations_with_email.registrations_with_email_request_builder import RegistrationsWithEmailRequestBuilder @@ -119,7 +115,6 @@ def registrations_with_user_id(self,user_id: str) -> RegistrationsWithUserIdRequ param user_id: Alternate key of virtualEventRegistration Returns: RegistrationsWithUserIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if user_id is None: raise TypeError("user_id cannot be null.") from .registrations_with_user_id.registrations_with_user_id_request_builder import RegistrationsWithUserIdRequestBuilder @@ -132,7 +127,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -144,7 +138,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -157,7 +150,6 @@ def to_patch_request_information(self,body: VirtualEventSession, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -172,7 +164,6 @@ def with_url(self,raw_url: str) -> VirtualEventSessionItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventSessionItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/sessions_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/sessions_request_builder.py index 8c36211c80b..77a210b3112 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/sessions_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions/sessions_request_builder.py @@ -39,7 +39,6 @@ def by_virtual_event_session_id(self,virtual_event_session_id: str) -> VirtualEv param virtual_event_session_id: The unique identifier of virtualEventSession Returns: VirtualEventSessionItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_session_id is None: raise TypeError("virtual_event_session_id cannot be null.") from .item.virtual_event_session_item_request_builder import VirtualEventSessionItemRequestBuilder @@ -55,7 +54,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions Returns: Optional[VirtualEventSessionCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/virtualevent-list-sessions?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -77,7 +75,6 @@ async def post(self,body: VirtualEventSession, request_configuration: Optional[R param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -100,7 +97,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -113,7 +109,6 @@ def to_post_request_information(self,body: VirtualEventSession, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -128,7 +123,6 @@ def with_url(self,raw_url: str) -> SessionsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py index 112f64de1cc..6ad9785c28c 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/sessions_with_join_web_url/sessions_with_join_web_url_request_builder.py @@ -39,7 +39,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -59,7 +58,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Sessions Returns: Optional[VirtualEventSession] Find more info here: https://learn.microsoft.com/graph/api/virtualeventsession-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -81,7 +79,6 @@ async def patch(self,body: VirtualEventSession, request_configuration: Optional[ param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[VirtualEventSession] """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -104,7 +101,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -116,7 +112,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -129,7 +124,6 @@ def to_patch_request_information(self,body: VirtualEventSession, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -144,7 +138,6 @@ def with_url(self,raw_url: str) -> SessionsWithJoinWebUrlRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return SessionsWithJoinWebUrlRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/item/virtual_event_webinar_item_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/item/virtual_event_webinar_item_request_builder.py index f7176b95008..3c246793cb0 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/item/virtual_event_webinar_item_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/item/virtual_event_webinar_item_request_builder.py @@ -43,7 +43,6 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: None """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_delete_request_information( request_configuration ) @@ -63,7 +62,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[VirtualE Returns: Optional[VirtualEventWebinar] Find more info here: https://learn.microsoft.com/graph/api/virtualeventwebinar-get?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -86,7 +84,6 @@ async def patch(self,body: VirtualEventWebinar, request_configuration: Optional[ Returns: Optional[VirtualEventWebinar] Find more info here: https://learn.microsoft.com/graph/api/virtualeventwebinar-update?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_patch_request_information( @@ -109,7 +106,6 @@ def registrations_with_email(self,email: str) -> RegistrationsWithEmailRequestBu param email: Alternate key of virtualEventRegistration Returns: RegistrationsWithEmailRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if email is None: raise TypeError("email cannot be null.") from .registrations_with_email.registrations_with_email_request_builder import RegistrationsWithEmailRequestBuilder @@ -122,7 +118,6 @@ def registrations_with_user_id(self,user_id: str) -> RegistrationsWithUserIdRequ param user_id: Alternate key of virtualEventRegistration Returns: RegistrationsWithUserIdRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if user_id is None: raise TypeError("user_id cannot be null.") from .registrations_with_user_id.registrations_with_user_id_request_builder import RegistrationsWithUserIdRequestBuilder @@ -135,7 +130,6 @@ def sessions_with_join_web_url(self,join_web_url: str) -> SessionsWithJoinWebUrl param join_web_url: Alternate key of virtualEventSession Returns: SessionsWithJoinWebUrlRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if join_web_url is None: raise TypeError("join_web_url cannot be null.") from .sessions_with_join_web_url.sessions_with_join_web_url_request_builder import SessionsWithJoinWebUrlRequestBuilder @@ -148,7 +142,6 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -160,7 +153,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -173,7 +165,6 @@ def to_patch_request_information(self,body: VirtualEventWebinar, request_configu param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters) @@ -188,7 +179,6 @@ def with_url(self,raw_url: str) -> VirtualEventWebinarItemRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: VirtualEventWebinarItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return VirtualEventWebinarItemRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/solutions/virtual_events/webinars/webinars_request_builder.py b/msgraph_beta/generated/solutions/virtual_events/webinars/webinars_request_builder.py index cc9d91d53f1..01869171a44 100644 --- a/msgraph_beta/generated/solutions/virtual_events/webinars/webinars_request_builder.py +++ b/msgraph_beta/generated/solutions/virtual_events/webinars/webinars_request_builder.py @@ -41,7 +41,6 @@ def by_virtual_event_webinar_id(self,virtual_event_webinar_id: str) -> VirtualEv param virtual_event_webinar_id: The unique identifier of virtualEventWebinar Returns: VirtualEventWebinarItemRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if virtual_event_webinar_id is None: raise TypeError("virtual_event_webinar_id cannot be null.") from .item.virtual_event_webinar_item_request_builder import VirtualEventWebinarItemRequestBuilder @@ -57,7 +56,6 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Webinars Returns: Optional[VirtualEventWebinarCollectionResponse] Find more info here: https://learn.microsoft.com/graph/api/virtualeventsroot-list-webinars?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) @@ -79,7 +77,6 @@ def get_by_user_id_and_role_with_user_id_with_role(self,role: str, user_id: str) param user_id: Usage: userId='{userId}' Returns: GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if role is None: raise TypeError("role cannot be null.") if user_id is None: @@ -94,7 +91,6 @@ def get_by_user_role_with_role(self,role: str) -> GetByUserRoleWithRoleRequestBu param role: Usage: role='{role}' Returns: GetByUserRoleWithRoleRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if role is None: raise TypeError("role cannot be null.") from .get_by_user_role_with_role.get_by_user_role_with_role_request_builder import GetByUserRoleWithRoleRequestBuilder @@ -109,7 +105,6 @@ async def post(self,body: VirtualEventWebinar, request_configuration: Optional[R Returns: Optional[VirtualEventWebinar] Find more info here: https://learn.microsoft.com/graph/api/virtualeventsroot-post-webinars?view=graph-rest-beta """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = self.to_post_request_information( @@ -132,7 +127,6 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") @@ -145,7 +139,6 @@ def to_post_request_information(self,body: VirtualEventWebinar, request_configur param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if body is None: raise TypeError("body cannot be null.") request_info = RequestInformation(Method.POST, self.url_template, self.path_parameters) @@ -160,7 +153,6 @@ def with_url(self,raw_url: str) -> WebinarsRequestBuilder: param raw_url: The raw URL to use for the request builder. Returns: WebinarsRequestBuilder """ - warn(" as of 2023-03/PrivatePreview:responderForm on 2025-06-17 and will be removed 2025-12-17", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") return WebinarsRequestBuilder(self.request_adapter, raw_url) diff --git a/msgraph_beta/generated/storage/file_storage/containers/containers_request_builder.py b/msgraph_beta/generated/storage/file_storage/containers/containers_request_builder.py index 18612e925e7..925f952fdc0 100644 --- a/msgraph_beta/generated/storage/file_storage/containers/containers_request_builder.py +++ b/msgraph_beta/generated/storage/file_storage/containers/containers_request_builder.py @@ -11,6 +11,7 @@ from kiota_abstractions.request_option import RequestOption from kiota_abstractions.serialization import Parsable, ParsableFactory from typing import Any, Optional, TYPE_CHECKING, Union +from uuid import UUID from warnings import warn if TYPE_CHECKING: @@ -18,6 +19,8 @@ from ....models.file_storage_container_collection_response import FileStorageContainerCollectionResponse from ....models.o_data_errors.o_data_error import ODataError from .count.count_request_builder import CountRequestBuilder + from .get_by_user_with_user_object_id.get_by_user_with_user_object_id_request_builder import GetByUserWithUserObjectIdRequestBuilder + from .get_by_user_with_user_object_id_with_role.get_by_user_with_user_object_id_with_role_request_builder import GetByUserWithUserObjectIdWithRoleRequestBuilder from .get_by_user_with_user_principal_name.get_by_user_with_user_principal_name_request_builder import GetByUserWithUserPrincipalNameRequestBuilder from .get_by_user_with_user_principal_name_with_role.get_by_user_with_user_principal_name_with_role_request_builder import GetByUserWithUserPrincipalNameWithRoleRequestBuilder from .item.file_storage_container_item_request_builder import FileStorageContainerItemRequestBuilder @@ -70,6 +73,33 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Containe return await self.request_adapter.send_async(request_info, FileStorageContainerCollectionResponse, error_mapping) + def get_by_user_with_user_object_id(self,user_object_id: UUID) -> GetByUserWithUserObjectIdRequestBuilder: + """ + Provides operations to call the getByUser method. + param user_object_id: Usage: userObjectId={userObjectId} + Returns: GetByUserWithUserObjectIdRequestBuilder + """ + if user_object_id is None: + raise TypeError("user_object_id cannot be null.") + from .get_by_user_with_user_object_id.get_by_user_with_user_object_id_request_builder import GetByUserWithUserObjectIdRequestBuilder + + return GetByUserWithUserObjectIdRequestBuilder(self.request_adapter, self.path_parameters, user_object_id) + + def get_by_user_with_user_object_id_with_role(self,role: str, user_object_id: UUID) -> GetByUserWithUserObjectIdWithRoleRequestBuilder: + """ + Provides operations to call the getByUser method. + param role: Usage: role='{role}' + param user_object_id: Usage: userObjectId={userObjectId} + Returns: GetByUserWithUserObjectIdWithRoleRequestBuilder + """ + if role is None: + raise TypeError("role cannot be null.") + if user_object_id is None: + raise TypeError("user_object_id cannot be null.") + from .get_by_user_with_user_object_id_with_role.get_by_user_with_user_object_id_with_role_request_builder import GetByUserWithUserObjectIdWithRoleRequestBuilder + + return GetByUserWithUserObjectIdWithRoleRequestBuilder(self.request_adapter, self.path_parameters, role, user_object_id) + def get_by_user_with_user_principal_name(self,user_principal_name: str) -> GetByUserWithUserPrincipalNameRequestBuilder: """ Provides operations to call the getByUser method. diff --git a/msgraph_beta/generated/models/identity_governance/compliance_issue_collection_response.py b/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_get_response.py similarity index 61% rename from msgraph_beta/generated/models/identity_governance/compliance_issue_collection_response.py rename to msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_get_response.py index f090cba82f7..f58b41adb49 100644 --- a/msgraph_beta/generated/models/identity_governance/compliance_issue_collection_response.py +++ b/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_get_response.py @@ -5,40 +5,40 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .compliance_issue import ComplianceIssue + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer -from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse +from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse @dataclass -class ComplianceIssueCollectionResponse(BaseCollectionPaginationCountResponse, Parsable): +class GetByUserWithUserObjectIdGetResponse(BaseCollectionPaginationCountResponse, Parsable): # The value property - value: Optional[list[ComplianceIssue]] = None + value: Optional[list[FileStorageContainer]] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> ComplianceIssueCollectionResponse: + def create_from_discriminator_value(parse_node: ParseNode) -> GetByUserWithUserObjectIdGetResponse: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: ComplianceIssueCollectionResponse + Returns: GetByUserWithUserObjectIdGetResponse """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return ComplianceIssueCollectionResponse() + return GetByUserWithUserObjectIdGetResponse() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .compliance_issue import ComplianceIssue + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .compliance_issue import ComplianceIssue + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer fields: dict[str, Callable[[Any], None]] = { - "value": lambda n : setattr(self, 'value', n.get_collection_of_object_values(ComplianceIssue)), + "value": lambda n : setattr(self, 'value', n.get_collection_of_object_values(FileStorageContainer)), } super_fields = super().get_field_deserializers() fields.update(super_fields) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/versions_request_builder.py b/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_request_builder.py similarity index 58% rename from msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/versions_request_builder.py rename to msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_request_builder.py index de5cca774f1..42d4012491e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/versions/versions_request_builder.py +++ b/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_request_builder.py @@ -11,89 +11,75 @@ from kiota_abstractions.request_option import RequestOption from kiota_abstractions.serialization import Parsable, ParsableFactory from typing import Any, Optional, TYPE_CHECKING, Union +from uuid import UUID from warnings import warn if TYPE_CHECKING: - from ......models.identity_governance.lifecycle_policy_collection_response import LifecyclePolicyCollectionResponse - from ......models.o_data_errors.o_data_error import ODataError - from .item.lifecycle_policy_item_request_builder import LifecyclePolicyItemRequestBuilder + from .....models.o_data_errors.o_data_error import ODataError + from .get_by_user_with_user_object_id_get_response import GetByUserWithUserObjectIdGetResponse -class VersionsRequestBuilder(BaseRequestBuilder): +class GetByUserWithUserObjectIdRequestBuilder(BaseRequestBuilder): """ - Provides operations to manage the versions property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. + Provides operations to call the getByUser method. """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: + def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]], user_object_id: Optional[UUID] = None) -> None: """ - Instantiates a new VersionsRequestBuilder and sets the default values. + Instantiates a new GetByUserWithUserObjectIdRequestBuilder and sets the default values. param path_parameters: The raw url or the url-template parameters for the request. param request_adapter: The request adapter to use to execute the requests. + param user_object_id: Usage: userObjectId={userObjectId} Returns: None """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) + if isinstance(path_parameters, dict): + path_parameters['userObjectId'] = user_object_id + super().__init__(request_adapter, "{+baseurl}/storage/fileStorage/containers/getByUser(userObjectId={userObjectId}){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) - def by_lifecycle_policy_id1(self,lifecycle_policy_id1: str) -> LifecyclePolicyItemRequestBuilder: + async def get(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters]] = None) -> Optional[GetByUserWithUserObjectIdGetResponse]: """ - Provides operations to manage the versions property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - param lifecycle_policy_id1: The unique identifier of lifecyclePolicy - Returns: LifecyclePolicyItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if lifecycle_policy_id1 is None: - raise TypeError("lifecycle_policy_id1 cannot be null.") - from .item.lifecycle_policy_item_request_builder import LifecyclePolicyItemRequestBuilder - - url_tpl_params = get_path_parameters(self.path_parameters) - url_tpl_params["lifecyclePolicy%2Did1"] = lifecycle_policy_id1 - return LifecyclePolicyItemRequestBuilder(self.request_adapter, url_tpl_params) - - async def get(self,request_configuration: Optional[RequestConfiguration[VersionsRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyCollectionResponse]: - """ - Get versions from identityGovernance + Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyCollectionResponse] + Returns: Optional[GetByUserWithUserObjectIdGetResponse] + Find more info here: https://learn.microsoft.com/graph/api/filestoragecontainer-getbyuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) - from ......models.o_data_errors.o_data_error import ODataError + from .....models.o_data_errors.o_data_error import ODataError error_mapping: dict[str, type[ParsableFactory]] = { "XXX": ODataError, } if not self.request_adapter: raise Exception("Http core is null") - from ......models.identity_governance.lifecycle_policy_collection_response import LifecyclePolicyCollectionResponse + from .get_by_user_with_user_object_id_get_response import GetByUserWithUserObjectIdGetResponse - return await self.request_adapter.send_async(request_info, LifecyclePolicyCollectionResponse, error_mapping) + return await self.request_adapter.send_async(request_info, GetByUserWithUserObjectIdGetResponse, error_mapping) - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[VersionsRequestBuilderGetQueryParameters]] = None) -> RequestInformation: + def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ - Get versions from identityGovernance + Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") return request_info - def with_url(self,raw_url: str) -> VersionsRequestBuilder: + def with_url(self,raw_url: str) -> GetByUserWithUserObjectIdRequestBuilder: """ Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. param raw_url: The raw URL to use for the request builder. - Returns: VersionsRequestBuilder + Returns: GetByUserWithUserObjectIdRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") - return VersionsRequestBuilder(self.request_adapter, raw_url) + return GetByUserWithUserObjectIdRequestBuilder(self.request_adapter, raw_url) @dataclass - class VersionsRequestBuilderGetQueryParameters(): + class GetByUserWithUserObjectIdRequestBuilderGetQueryParameters(): """ - Get versions from identityGovernance + Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. """ def get_query_parameter(self,original_name: str) -> str: """ @@ -147,7 +133,7 @@ def get_query_parameter(self,original_name: str) -> str: @dataclass - class VersionsRequestBuilderGetRequestConfiguration(RequestConfiguration[VersionsRequestBuilderGetQueryParameters]): + class GetByUserWithUserObjectIdRequestBuilderGetRequestConfiguration(RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ diff --git a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_rule_collection_response.py b/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_get_response.py similarity index 60% rename from msgraph_beta/generated/models/identity_governance/lifecycle_policy_rule_collection_response.py rename to msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_get_response.py index 38ecc91aa11..94ae127f9bf 100644 --- a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_rule_collection_response.py +++ b/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_get_response.py @@ -5,40 +5,40 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .lifecycle_policy_rule import LifecyclePolicyRule + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer -from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse +from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse @dataclass -class LifecyclePolicyRuleCollectionResponse(BaseCollectionPaginationCountResponse, Parsable): +class GetByUserWithUserObjectIdWithRoleGetResponse(BaseCollectionPaginationCountResponse, Parsable): # The value property - value: Optional[list[LifecyclePolicyRule]] = None + value: Optional[list[FileStorageContainer]] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> LifecyclePolicyRuleCollectionResponse: + def create_from_discriminator_value(parse_node: ParseNode) -> GetByUserWithUserObjectIdWithRoleGetResponse: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: LifecyclePolicyRuleCollectionResponse + Returns: GetByUserWithUserObjectIdWithRoleGetResponse """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return LifecyclePolicyRuleCollectionResponse() + return GetByUserWithUserObjectIdWithRoleGetResponse() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .lifecycle_policy_rule import LifecyclePolicyRule + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .lifecycle_policy_rule import LifecyclePolicyRule + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer fields: dict[str, Callable[[Any], None]] = { - "value": lambda n : setattr(self, 'value', n.get_collection_of_object_values(LifecyclePolicyRule)), + "value": lambda n : setattr(self, 'value', n.get_collection_of_object_values(FileStorageContainer)), } super_fields = super().get_field_deserializers() fields.update(super_fields) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/versions_request_builder.py b/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_request_builder.py similarity index 58% rename from msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/versions_request_builder.py rename to msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_request_builder.py index abcd433fac6..90c843decb9 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/versions/versions_request_builder.py +++ b/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_request_builder.py @@ -11,89 +11,76 @@ from kiota_abstractions.request_option import RequestOption from kiota_abstractions.serialization import Parsable, ParsableFactory from typing import Any, Optional, TYPE_CHECKING, Union +from uuid import UUID from warnings import warn if TYPE_CHECKING: - from .......models.identity_governance.lifecycle_policy_collection_response import LifecyclePolicyCollectionResponse - from .......models.o_data_errors.o_data_error import ODataError - from .item.lifecycle_policy_item_request_builder import LifecyclePolicyItemRequestBuilder + from .....models.o_data_errors.o_data_error import ODataError + from .get_by_user_with_user_object_id_with_role_get_response import GetByUserWithUserObjectIdWithRoleGetResponse -class VersionsRequestBuilder(BaseRequestBuilder): +class GetByUserWithUserObjectIdWithRoleRequestBuilder(BaseRequestBuilder): """ - Provides operations to manage the versions property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. + Provides operations to call the getByUser method. """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: + def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]], role: Optional[str] = None, user_object_id: Optional[UUID] = None) -> None: """ - Instantiates a new VersionsRequestBuilder and sets the default values. + Instantiates a new GetByUserWithUserObjectIdWithRoleRequestBuilder and sets the default values. param path_parameters: The raw url or the url-template parameters for the request. param request_adapter: The request adapter to use to execute the requests. + param role: Usage: role='{role}' + param user_object_id: Usage: userObjectId={userObjectId} Returns: None """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) + if isinstance(path_parameters, dict): + path_parameters['role'] = role + path_parameters['userObjectId'] = user_object_id + super().__init__(request_adapter, "{+baseurl}/storage/fileStorage/containers/getByUser(userObjectId={userObjectId},role='{role}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) - def by_lifecycle_policy_id1(self,lifecycle_policy_id1: str) -> LifecyclePolicyItemRequestBuilder: + async def get(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters]] = None) -> Optional[GetByUserWithUserObjectIdWithRoleGetResponse]: """ - Provides operations to manage the versions property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - param lifecycle_policy_id1: The unique identifier of lifecyclePolicy - Returns: LifecyclePolicyItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if lifecycle_policy_id1 is None: - raise TypeError("lifecycle_policy_id1 cannot be null.") - from .item.lifecycle_policy_item_request_builder import LifecyclePolicyItemRequestBuilder - - url_tpl_params = get_path_parameters(self.path_parameters) - url_tpl_params["lifecyclePolicy%2Did1"] = lifecycle_policy_id1 - return LifecyclePolicyItemRequestBuilder(self.request_adapter, url_tpl_params) - - async def get(self,request_configuration: Optional[RequestConfiguration[VersionsRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyCollectionResponse]: - """ - Get versions from identityGovernance + Invoke function getByUser param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyCollectionResponse] + Returns: Optional[GetByUserWithUserObjectIdWithRoleGetResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) - from .......models.o_data_errors.o_data_error import ODataError + from .....models.o_data_errors.o_data_error import ODataError error_mapping: dict[str, type[ParsableFactory]] = { "XXX": ODataError, } if not self.request_adapter: raise Exception("Http core is null") - from .......models.identity_governance.lifecycle_policy_collection_response import LifecyclePolicyCollectionResponse + from .get_by_user_with_user_object_id_with_role_get_response import GetByUserWithUserObjectIdWithRoleGetResponse - return await self.request_adapter.send_async(request_info, LifecyclePolicyCollectionResponse, error_mapping) + return await self.request_adapter.send_async(request_info, GetByUserWithUserObjectIdWithRoleGetResponse, error_mapping) - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[VersionsRequestBuilderGetQueryParameters]] = None) -> RequestInformation: + def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ - Get versions from identityGovernance + Invoke function getByUser param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") return request_info - def with_url(self,raw_url: str) -> VersionsRequestBuilder: + def with_url(self,raw_url: str) -> GetByUserWithUserObjectIdWithRoleRequestBuilder: """ Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. param raw_url: The raw URL to use for the request builder. - Returns: VersionsRequestBuilder + Returns: GetByUserWithUserObjectIdWithRoleRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") - return VersionsRequestBuilder(self.request_adapter, raw_url) + return GetByUserWithUserObjectIdWithRoleRequestBuilder(self.request_adapter, raw_url) @dataclass - class VersionsRequestBuilderGetQueryParameters(): + class GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters(): """ - Get versions from identityGovernance + Invoke function getByUser """ def get_query_parameter(self,original_name: str) -> str: """ @@ -147,7 +134,7 @@ def get_query_parameter(self,original_name: str) -> str: @dataclass - class VersionsRequestBuilderGetRequestConfiguration(RequestConfiguration[VersionsRequestBuilderGetQueryParameters]): + class GetByUserWithUserObjectIdWithRoleRequestBuilderGetRequestConfiguration(RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ diff --git a/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_principal_name/get_by_user_with_user_principal_name_request_builder.py b/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_principal_name/get_by_user_with_user_principal_name_request_builder.py index b62a8103e14..27203b1f013 100644 --- a/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_principal_name/get_by_user_with_user_principal_name_request_builder.py +++ b/msgraph_beta/generated/storage/file_storage/containers/get_by_user_with_user_principal_name/get_by_user_with_user_principal_name_request_builder.py @@ -35,10 +35,9 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d async def get(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserPrincipalNameRequestBuilderGetQueryParameters]] = None) -> Optional[GetByUserWithUserPrincipalNameGetResponse]: """ - Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. + Invoke function getByUser param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GetByUserWithUserPrincipalNameGetResponse] - Find more info here: https://learn.microsoft.com/graph/api/filestoragecontainer-getbyuser?view=graph-rest-beta """ request_info = self.to_get_request_information( request_configuration @@ -56,7 +55,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GetByUse def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserPrincipalNameRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ - Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. + Invoke function getByUser param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ @@ -78,7 +77,7 @@ def with_url(self,raw_url: str) -> GetByUserWithUserPrincipalNameRequestBuilder: @dataclass class GetByUserWithUserPrincipalNameRequestBuilderGetQueryParameters(): """ - Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. + Invoke function getByUser """ def get_query_parameter(self,original_name: str) -> str: """ diff --git a/msgraph_beta/generated/storage/file_storage/deleted_containers/deleted_containers_request_builder.py b/msgraph_beta/generated/storage/file_storage/deleted_containers/deleted_containers_request_builder.py index 2bb58063abc..dd2c76caf58 100644 --- a/msgraph_beta/generated/storage/file_storage/deleted_containers/deleted_containers_request_builder.py +++ b/msgraph_beta/generated/storage/file_storage/deleted_containers/deleted_containers_request_builder.py @@ -11,6 +11,7 @@ from kiota_abstractions.request_option import RequestOption from kiota_abstractions.serialization import Parsable, ParsableFactory from typing import Any, Optional, TYPE_CHECKING, Union +from uuid import UUID from warnings import warn if TYPE_CHECKING: @@ -18,6 +19,8 @@ from ....models.file_storage_container_collection_response import FileStorageContainerCollectionResponse from ....models.o_data_errors.o_data_error import ODataError from .count.count_request_builder import CountRequestBuilder + from .get_by_user_with_user_object_id.get_by_user_with_user_object_id_request_builder import GetByUserWithUserObjectIdRequestBuilder + from .get_by_user_with_user_object_id_with_role.get_by_user_with_user_object_id_with_role_request_builder import GetByUserWithUserObjectIdWithRoleRequestBuilder from .get_by_user_with_user_principal_name.get_by_user_with_user_principal_name_request_builder import GetByUserWithUserPrincipalNameRequestBuilder from .get_by_user_with_user_principal_name_with_role.get_by_user_with_user_principal_name_with_role_request_builder import GetByUserWithUserPrincipalNameWithRoleRequestBuilder from .item.file_storage_container_item_request_builder import FileStorageContainerItemRequestBuilder @@ -69,6 +72,33 @@ async def get(self,request_configuration: Optional[RequestConfiguration[DeletedC return await self.request_adapter.send_async(request_info, FileStorageContainerCollectionResponse, error_mapping) + def get_by_user_with_user_object_id(self,user_object_id: UUID) -> GetByUserWithUserObjectIdRequestBuilder: + """ + Provides operations to call the getByUser method. + param user_object_id: Usage: userObjectId={userObjectId} + Returns: GetByUserWithUserObjectIdRequestBuilder + """ + if user_object_id is None: + raise TypeError("user_object_id cannot be null.") + from .get_by_user_with_user_object_id.get_by_user_with_user_object_id_request_builder import GetByUserWithUserObjectIdRequestBuilder + + return GetByUserWithUserObjectIdRequestBuilder(self.request_adapter, self.path_parameters, user_object_id) + + def get_by_user_with_user_object_id_with_role(self,role: str, user_object_id: UUID) -> GetByUserWithUserObjectIdWithRoleRequestBuilder: + """ + Provides operations to call the getByUser method. + param role: Usage: role='{role}' + param user_object_id: Usage: userObjectId={userObjectId} + Returns: GetByUserWithUserObjectIdWithRoleRequestBuilder + """ + if role is None: + raise TypeError("role cannot be null.") + if user_object_id is None: + raise TypeError("user_object_id cannot be null.") + from .get_by_user_with_user_object_id_with_role.get_by_user_with_user_object_id_with_role_request_builder import GetByUserWithUserObjectIdWithRoleRequestBuilder + + return GetByUserWithUserObjectIdWithRoleRequestBuilder(self.request_adapter, self.path_parameters, role, user_object_id) + def get_by_user_with_user_principal_name(self,user_principal_name: str) -> GetByUserWithUserPrincipalNameRequestBuilder: """ Provides operations to call the getByUser method. diff --git a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_collection_response.py b/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_get_response.py similarity index 61% rename from msgraph_beta/generated/models/identity_governance/lifecycle_policy_collection_response.py rename to msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_get_response.py index 09a9bd8f416..f58b41adb49 100644 --- a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_collection_response.py +++ b/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_get_response.py @@ -5,40 +5,40 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .lifecycle_policy import LifecyclePolicy + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer -from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse +from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse @dataclass -class LifecyclePolicyCollectionResponse(BaseCollectionPaginationCountResponse, Parsable): +class GetByUserWithUserObjectIdGetResponse(BaseCollectionPaginationCountResponse, Parsable): # The value property - value: Optional[list[LifecyclePolicy]] = None + value: Optional[list[FileStorageContainer]] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> LifecyclePolicyCollectionResponse: + def create_from_discriminator_value(parse_node: ParseNode) -> GetByUserWithUserObjectIdGetResponse: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: LifecyclePolicyCollectionResponse + Returns: GetByUserWithUserObjectIdGetResponse """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return LifecyclePolicyCollectionResponse() + return GetByUserWithUserObjectIdGetResponse() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .lifecycle_policy import LifecyclePolicy + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .lifecycle_policy import LifecyclePolicy + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer fields: dict[str, Callable[[Any], None]] = { - "value": lambda n : setattr(self, 'value', n.get_collection_of_object_values(LifecyclePolicy)), + "value": lambda n : setattr(self, 'value', n.get_collection_of_object_values(FileStorageContainer)), } super_fields = super().get_field_deserializers() fields.update(super_fields) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/rules/rules_request_builder.py b/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_request_builder.py similarity index 58% rename from msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/rules/rules_request_builder.py rename to msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_request_builder.py index f272f8f27f9..b8548320607 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/deleted_items/lifecycle_policies/item/rules/rules_request_builder.py +++ b/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id/get_by_user_with_user_object_id_request_builder.py @@ -11,89 +11,75 @@ from kiota_abstractions.request_option import RequestOption from kiota_abstractions.serialization import Parsable, ParsableFactory from typing import Any, Optional, TYPE_CHECKING, Union +from uuid import UUID from warnings import warn if TYPE_CHECKING: - from .......models.identity_governance.lifecycle_policy_rule_collection_response import LifecyclePolicyRuleCollectionResponse - from .......models.o_data_errors.o_data_error import ODataError - from .item.lifecycle_policy_rule_item_request_builder import LifecyclePolicyRuleItemRequestBuilder + from .....models.o_data_errors.o_data_error import ODataError + from .get_by_user_with_user_object_id_get_response import GetByUserWithUserObjectIdGetResponse -class RulesRequestBuilder(BaseRequestBuilder): +class GetByUserWithUserObjectIdRequestBuilder(BaseRequestBuilder): """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. + Provides operations to call the getByUser method. """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: + def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]], user_object_id: Optional[UUID] = None) -> None: """ - Instantiates a new RulesRequestBuilder and sets the default values. + Instantiates a new GetByUserWithUserObjectIdRequestBuilder and sets the default values. param path_parameters: The raw url or the url-template parameters for the request. param request_adapter: The request adapter to use to execute the requests. + param user_object_id: Usage: userObjectId={userObjectId} Returns: None """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/lifecyclePolicies/{lifecyclePolicy%2Did}/rules{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) + if isinstance(path_parameters, dict): + path_parameters['userObjectId'] = user_object_id + super().__init__(request_adapter, "{+baseurl}/storage/fileStorage/deletedContainers/getByUser(userObjectId={userObjectId}){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) - def by_lifecycle_policy_rule_id(self,lifecycle_policy_rule_id: str) -> LifecyclePolicyRuleItemRequestBuilder: + async def get(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters]] = None) -> Optional[GetByUserWithUserObjectIdGetResponse]: """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - param lifecycle_policy_rule_id: The unique identifier of lifecyclePolicyRule - Returns: LifecyclePolicyRuleItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if lifecycle_policy_rule_id is None: - raise TypeError("lifecycle_policy_rule_id cannot be null.") - from .item.lifecycle_policy_rule_item_request_builder import LifecyclePolicyRuleItemRequestBuilder - - url_tpl_params = get_path_parameters(self.path_parameters) - url_tpl_params["lifecyclePolicyRule%2Did"] = lifecycle_policy_rule_id - return LifecyclePolicyRuleItemRequestBuilder(self.request_adapter, url_tpl_params) - - async def get(self,request_configuration: Optional[RequestConfiguration[RulesRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyRuleCollectionResponse]: - """ - Get rules from identityGovernance + Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyRuleCollectionResponse] + Returns: Optional[GetByUserWithUserObjectIdGetResponse] + Find more info here: https://learn.microsoft.com/graph/api/filestoragecontainer-getbyuser?view=graph-rest-beta """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) - from .......models.o_data_errors.o_data_error import ODataError + from .....models.o_data_errors.o_data_error import ODataError error_mapping: dict[str, type[ParsableFactory]] = { "XXX": ODataError, } if not self.request_adapter: raise Exception("Http core is null") - from .......models.identity_governance.lifecycle_policy_rule_collection_response import LifecyclePolicyRuleCollectionResponse + from .get_by_user_with_user_object_id_get_response import GetByUserWithUserObjectIdGetResponse - return await self.request_adapter.send_async(request_info, LifecyclePolicyRuleCollectionResponse, error_mapping) + return await self.request_adapter.send_async(request_info, GetByUserWithUserObjectIdGetResponse, error_mapping) - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[RulesRequestBuilderGetQueryParameters]] = None) -> RequestInformation: + def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ - Get rules from identityGovernance + Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") return request_info - def with_url(self,raw_url: str) -> RulesRequestBuilder: + def with_url(self,raw_url: str) -> GetByUserWithUserObjectIdRequestBuilder: """ Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. param raw_url: The raw URL to use for the request builder. - Returns: RulesRequestBuilder + Returns: GetByUserWithUserObjectIdRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") - return RulesRequestBuilder(self.request_adapter, raw_url) + return GetByUserWithUserObjectIdRequestBuilder(self.request_adapter, raw_url) @dataclass - class RulesRequestBuilderGetQueryParameters(): + class GetByUserWithUserObjectIdRequestBuilderGetQueryParameters(): """ - Get rules from identityGovernance + Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. """ def get_query_parameter(self,original_name: str) -> str: """ @@ -147,7 +133,7 @@ def get_query_parameter(self,original_name: str) -> str: @dataclass - class RulesRequestBuilderGetRequestConfiguration(RequestConfiguration[RulesRequestBuilderGetQueryParameters]): + class GetByUserWithUserObjectIdRequestBuilderGetRequestConfiguration(RequestConfiguration[GetByUserWithUserObjectIdRequestBuilderGetQueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ diff --git a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_priority_configuration_collection_response.py b/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_get_response.py similarity index 58% rename from msgraph_beta/generated/models/identity_governance/lifecycle_policy_priority_configuration_collection_response.py rename to msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_get_response.py index 7bb7e2aeb64..94ae127f9bf 100644 --- a/msgraph_beta/generated/models/identity_governance/lifecycle_policy_priority_configuration_collection_response.py +++ b/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_get_response.py @@ -5,40 +5,40 @@ from typing import Any, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer -from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse +from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse @dataclass -class LifecyclePolicyPriorityConfigurationCollectionResponse(BaseCollectionPaginationCountResponse, Parsable): +class GetByUserWithUserObjectIdWithRoleGetResponse(BaseCollectionPaginationCountResponse, Parsable): # The value property - value: Optional[list[LifecyclePolicyPriorityConfiguration]] = None + value: Optional[list[FileStorageContainer]] = None @staticmethod - def create_from_discriminator_value(parse_node: ParseNode) -> LifecyclePolicyPriorityConfigurationCollectionResponse: + def create_from_discriminator_value(parse_node: ParseNode) -> GetByUserWithUserObjectIdWithRoleGetResponse: """ Creates a new instance of the appropriate class based on discriminator value param parse_node: The parse node to use to read the discriminator value and create the object - Returns: LifecyclePolicyPriorityConfigurationCollectionResponse + Returns: GetByUserWithUserObjectIdWithRoleGetResponse """ if parse_node is None: raise TypeError("parse_node cannot be null.") - return LifecyclePolicyPriorityConfigurationCollectionResponse() + return GetByUserWithUserObjectIdWithRoleGetResponse() def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]: """ The deserialization information for the current model Returns: dict[str, Callable[[ParseNode], None]] """ - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer - from ..base_collection_pagination_count_response import BaseCollectionPaginationCountResponse - from .lifecycle_policy_priority_configuration import LifecyclePolicyPriorityConfiguration + from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse + from .....models.file_storage_container import FileStorageContainer fields: dict[str, Callable[[Any], None]] = { - "value": lambda n : setattr(self, 'value', n.get_collection_of_object_values(LifecyclePolicyPriorityConfiguration)), + "value": lambda n : setattr(self, 'value', n.get_collection_of_object_values(FileStorageContainer)), } super_fields = super().get_field_deserializers() fields.update(super_fields) diff --git a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/rules/rules_request_builder.py b/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_request_builder.py similarity index 58% rename from msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/rules/rules_request_builder.py rename to msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_request_builder.py index 93d0d851306..211b680229e 100644 --- a/msgraph_beta/generated/identity_governance/lifecycle_workflows/lifecycle_policies/item/rules/rules_request_builder.py +++ b/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_object_id_with_role/get_by_user_with_user_object_id_with_role_request_builder.py @@ -11,89 +11,76 @@ from kiota_abstractions.request_option import RequestOption from kiota_abstractions.serialization import Parsable, ParsableFactory from typing import Any, Optional, TYPE_CHECKING, Union +from uuid import UUID from warnings import warn if TYPE_CHECKING: - from ......models.identity_governance.lifecycle_policy_rule_collection_response import LifecyclePolicyRuleCollectionResponse - from ......models.o_data_errors.o_data_error import ODataError - from .item.lifecycle_policy_rule_item_request_builder import LifecyclePolicyRuleItemRequestBuilder + from .....models.o_data_errors.o_data_error import ODataError + from .get_by_user_with_user_object_id_with_role_get_response import GetByUserWithUserObjectIdWithRoleGetResponse -class RulesRequestBuilder(BaseRequestBuilder): +class GetByUserWithUserObjectIdWithRoleRequestBuilder(BaseRequestBuilder): """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. + Provides operations to call the getByUser method. """ - def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None: + def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]], role: Optional[str] = None, user_object_id: Optional[UUID] = None) -> None: """ - Instantiates a new RulesRequestBuilder and sets the default values. + Instantiates a new GetByUserWithUserObjectIdWithRoleRequestBuilder and sets the default values. param path_parameters: The raw url or the url-template parameters for the request. param request_adapter: The request adapter to use to execute the requests. + param role: Usage: role='{role}' + param user_object_id: Usage: userObjectId={userObjectId} Returns: None """ - super().__init__(request_adapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/lifecyclePolicies/{lifecyclePolicy%2Did}/rules{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) + if isinstance(path_parameters, dict): + path_parameters['role'] = role + path_parameters['userObjectId'] = user_object_id + super().__init__(request_adapter, "{+baseurl}/storage/fileStorage/deletedContainers/getByUser(userObjectId={userObjectId},role='{role}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters) - def by_lifecycle_policy_rule_id(self,lifecycle_policy_rule_id: str) -> LifecyclePolicyRuleItemRequestBuilder: + async def get(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters]] = None) -> Optional[GetByUserWithUserObjectIdWithRoleGetResponse]: """ - Provides operations to manage the rules property of the microsoft.graph.identityGovernance.lifecyclePolicy entity. - param lifecycle_policy_rule_id: The unique identifier of lifecyclePolicyRule - Returns: LifecyclePolicyRuleItemRequestBuilder - """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) - if lifecycle_policy_rule_id is None: - raise TypeError("lifecycle_policy_rule_id cannot be null.") - from .item.lifecycle_policy_rule_item_request_builder import LifecyclePolicyRuleItemRequestBuilder - - url_tpl_params = get_path_parameters(self.path_parameters) - url_tpl_params["lifecyclePolicyRule%2Did"] = lifecycle_policy_rule_id - return LifecyclePolicyRuleItemRequestBuilder(self.request_adapter, url_tpl_params) - - async def get(self,request_configuration: Optional[RequestConfiguration[RulesRequestBuilderGetQueryParameters]] = None) -> Optional[LifecyclePolicyRuleCollectionResponse]: - """ - Get rules from identityGovernance + Invoke function getByUser param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. - Returns: Optional[LifecyclePolicyRuleCollectionResponse] + Returns: Optional[GetByUserWithUserObjectIdWithRoleGetResponse] """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = self.to_get_request_information( request_configuration ) - from ......models.o_data_errors.o_data_error import ODataError + from .....models.o_data_errors.o_data_error import ODataError error_mapping: dict[str, type[ParsableFactory]] = { "XXX": ODataError, } if not self.request_adapter: raise Exception("Http core is null") - from ......models.identity_governance.lifecycle_policy_rule_collection_response import LifecyclePolicyRuleCollectionResponse + from .get_by_user_with_user_object_id_with_role_get_response import GetByUserWithUserObjectIdWithRoleGetResponse - return await self.request_adapter.send_async(request_info, LifecyclePolicyRuleCollectionResponse, error_mapping) + return await self.request_adapter.send_async(request_info, GetByUserWithUserObjectIdWithRoleGetResponse, error_mapping) - def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[RulesRequestBuilderGetQueryParameters]] = None) -> RequestInformation: + def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ - Get rules from identityGovernance + Invoke function getByUser param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) request_info.configure(request_configuration) request_info.headers.try_add("Accept", "application/json") return request_info - def with_url(self,raw_url: str) -> RulesRequestBuilder: + def with_url(self,raw_url: str) -> GetByUserWithUserObjectIdWithRoleRequestBuilder: """ Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. param raw_url: The raw URL to use for the request builder. - Returns: RulesRequestBuilder + Returns: GetByUserWithUserObjectIdWithRoleRequestBuilder """ - warn(" as of 2022-02/PrivatePreview:groupPeerOutlierInsights on 2021-10-21 and will be removed 2022-02-18", DeprecationWarning) if raw_url is None: raise TypeError("raw_url cannot be null.") - return RulesRequestBuilder(self.request_adapter, raw_url) + return GetByUserWithUserObjectIdWithRoleRequestBuilder(self.request_adapter, raw_url) @dataclass - class RulesRequestBuilderGetQueryParameters(): + class GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters(): """ - Get rules from identityGovernance + Invoke function getByUser """ def get_query_parameter(self,original_name: str) -> str: """ @@ -147,7 +134,7 @@ def get_query_parameter(self,original_name: str) -> str: @dataclass - class RulesRequestBuilderGetRequestConfiguration(RequestConfiguration[RulesRequestBuilderGetQueryParameters]): + class GetByUserWithUserObjectIdWithRoleRequestBuilderGetRequestConfiguration(RequestConfiguration[GetByUserWithUserObjectIdWithRoleRequestBuilderGetQueryParameters]): """ Configuration for the request such as headers, query parameters, and middleware options. """ diff --git a/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_principal_name/get_by_user_with_user_principal_name_request_builder.py b/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_principal_name/get_by_user_with_user_principal_name_request_builder.py index 691802299b0..8baf9224d75 100644 --- a/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_principal_name/get_by_user_with_user_principal_name_request_builder.py +++ b/msgraph_beta/generated/storage/file_storage/deleted_containers/get_by_user_with_user_principal_name/get_by_user_with_user_principal_name_request_builder.py @@ -35,10 +35,9 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d async def get(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserPrincipalNameRequestBuilderGetQueryParameters]] = None) -> Optional[GetByUserWithUserPrincipalNameGetResponse]: """ - Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. + Invoke function getByUser param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: Optional[GetByUserWithUserPrincipalNameGetResponse] - Find more info here: https://learn.microsoft.com/graph/api/filestoragecontainer-getbyuser?view=graph-rest-beta """ request_info = self.to_get_request_information( request_configuration @@ -56,7 +55,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[GetByUse def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[GetByUserWithUserPrincipalNameRequestBuilderGetQueryParameters]] = None) -> RequestInformation: """ - Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. + Invoke function getByUser param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. Returns: RequestInformation """ @@ -78,7 +77,7 @@ def with_url(self,raw_url: str) -> GetByUserWithUserPrincipalNameRequestBuilder: @dataclass class GetByUserWithUserPrincipalNameRequestBuilderGetQueryParameters(): """ - Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner. + Invoke function getByUser """ def get_query_parameter(self,original_name: str) -> str: """